Java Doc for View.java in  » Swing-Library » jEdit » org » gjt » sp » jedit » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Swing Library » jEdit » org.gjt.sp.jedit 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.Component
      java.awt.Container
         java.awt.Window
            java.awt.Frame
               javax.swing.JFrame
                  org.gjt.sp.jedit.View

View
public class View extends JFrame implements EBComponent,InputHandlerProvider(Code)
A View is jEdit's top-level frame window.

In a BeanShell script, you can obtain the current view instance from the view variable.

The largest component it contains is an EditPane that in turn contains a org.gjt.sp.jedit.textarea.JEditTextArea that displays a Buffer . A view can have more than one edit pane in a split window configuration. A view also contains a menu bar, an optional toolbar and other window decorations, as well as docked windows.

The View class performs two important operations dealing with plugins: creating plugin menu items, and managing dockable windows.

  • When a view is being created, its initialization routine iterates through the collection of loaded plugins and constructs the Plugins menu using the properties as specified in the EditPlugin class.
  • The view also creates and initializes a org.gjt.sp.jedit.gui.DockableWindowManager object. This object is responsible for creating, closing and managing dockable windows.
This class does not have a public constructor. Views can be opened and closed using methods in the jEdit class.
See Also:   org.gjt.sp.jedit.jEdit.newView(View)
See Also:   org.gjt.sp.jedit.jEdit.newView(ViewBuffer)
See Also:   org.gjt.sp.jedit.jEdit.newView(ViewBufferboolean)
See Also:   org.gjt.sp.jedit.jEdit.closeView(View)
author:
   Slava Pestov
author:
   John Gellene (API documentation)
version:
   $Id: View.java 10894 2007-10-15 16:11:39Z mediumnet $

Inner Class :class CaretHandler implements CaretListener
Inner Class :class FocusHandler extends FocusAdapter
Inner Class :class ScrollHandler implements ScrollListener
Inner Class :class WindowHandler extends WindowAdapter
Inner Class :public static class ViewConfig
Inner Class :static class MyFocusTraversalPolicy extends LayoutFocusTraversalPolicy

Field Summary
final public static  intABOVE_ACTION_BAR_LAYER
    
final public static  intABOVE_SYSTEM_BAR_LAYER
     Above system tool bar layer.
final public static  intACTION_BAR
    
final public static  intACTION_BAR_LAYER
     Action bar layer.
final public static  intBELOW_SEARCH_BAR_LAYER
     Below search bar layer.
final public static  intBELOW_STATUS_BAR_LAYER
     Status bar layer.
final public static  intBELOW_SYSTEM_BAR_LAYER
     Below system tool bar layer.
final public static  intBOTTOM_GROUP
    
final public static  intBOTTOM_LAYER
     The lowest possible layer.
final public static  intDEFAULT_GROUP
    
final public static  intDEFAULT_LAYER
     The default layer for tool bars with no preference.
final public static  intSEARCH_BAR_LAYER
     Search bar layer.
final public static  intSTATUS_BAR_LAYER
     Status bar layer.
final public static  intSYSTEM_BAR_LAYER
     System tool bar layer.
final public static  intTEXT_AREA
    
final public static  intTOP_GROUP
    
final public static  intTOP_LAYER
     The highest possible layer.
final public static  intVIEW
    
 Viewnext
    
 Viewprev
    

Constructor Summary
 View(Buffer buffer, ViewConfig config)
    

Method Summary
public  voidactionBar()
     Shows the action bar if needed, and sends keyboard focus there.
public  voidaddToolBar(Component toolBar)
     Adds a tool bar to this view.
public  voidaddToolBar(int group, Component toolBar)
     Adds a tool bar to this view.
public  voidaddToolBar(int group, int layer, Component toolBar)
     Adds a tool bar to this view.
 voidclose()
    
final public  ActionBargetActionBar()
     Returns the action bar.
public  BuffergetBuffer()
     Returns the current edit pane's buffer.
public  DockableWindowManagergetDockableWindowManager()
     Returns the dockable window manager associated with this view.
public  EditPanegetEditPane()
     Returns the current edit pane.
public  EditPane[]getEditPanes()
     Returns all edit panes.
public  InputHandlergetInputHandler()
     Returns the input handler.
public  KeyListenergetKeyEventInterceptor()
     Returns the listener that will handle all key events in this view, if any.
public  Macros.RecordergetMacroRecorder()
     Returns the macro recorder.
public  DimensiongetMinimumSize()
    
public  ViewgetNext()
     Returns the next view in the list.
public  ComponentgetPrefixFocusOwner()
    
public  ViewgetPrev()
     Returns the previous view in the list.
final public  SearchBargetSearchBar()
     Returns the search bar.
public  JSplitPanegetSplitPane()
     Returns the top-level split pane, if any.
public  StatusBargetStatus()
     Returns the status bar.
public  JEditTextAreagetTextArea()
     Returns the current edit pane's text area.
public  BoxgetToolBar()
     Returns the view's tool bar.
public  ViewConfiggetViewConfig()
    
public  EditPanegoToBuffer(Buffer buffer)
     If this buffer is open in one of the view's edit panes, sets focus to that edit pane.
public  voidhandleMessage(EBMessage msg)
    
public synchronized  voidhideWaitCursor()
     Hides the wait cursor.
public  booleanisClosed()
     Returns true if this view has been closed with jEdit.closeView(View) .
public  booleanisPlainView()
     Returns true if this is an auxilliary view with no dockable windows.
public  voidnextTextArea()
     Moves keyboard focus to the next text area.
public  voidprevTextArea()
     Moves keyboard focus to the previous text area.
public  voidprocessKeyEvent(KeyEvent evt)
     Forwards key events directly to the input handler.
public  voidprocessKeyEvent(KeyEvent evt, boolean calledFromTextArea)
     Forwards key events directly to the input handler.
public  voidprocessKeyEvent(KeyEvent evt, int from)
     Forwards key events directly to the input handler.
public  voidprocessKeyEvent(KeyEvent evt, int from, boolean global)
     Forwards key events directly to the input handler.
public  voidquickHyperSearch(boolean word)
     Quick HyperSearch.
public  voidquickIncrementalSearch(boolean word)
     Quick search.
public  voidremoveToolBar(Component toolBar)
     Removes a tool bar from this view.
public  voidresplit()
     Restore the split configuration as it was before unsplitting.
public  voidsetBuffer(Buffer buffer)
     Sets the current edit pane's buffer.
public  voidsetBuffer(Buffer buffer, boolean disableFileStatusCheck)
     Sets the current edit pane's buffer.
public  voidsetInputHandler(InputHandler inputHandler)
     Sets the input handler.
public  voidsetKeyEventInterceptor(KeyListener listener)
     Sets the listener that will handle all key events in this view.
public  voidsetMacroRecorder(Macros.Recorder recorder)
     Sets the macro recorder.
public  voidsetPrefixFocusOwner(Component prefixFocusOwner)
    
public  voidsetWaitSocket(Socket waitSocket)
     This socket is closed when the buffer is closed.
public synchronized  voidshowWaitCursor()
     Shows the wait cursor.
public  EditPanesplit(int orientation)
     Splits the view.
public  EditPanesplitHorizontally()
     Splits the view horizontally.
public  EditPanesplitVertically()
     Splits the view vertically.
public  StringtoString()
    
public  voidunsplit()
     Unsplits the view.
public  voidunsplitCurrent()
     Removes the current split.
public  voidupdateTitle()
     Updates the title bar.

Field Detail
ABOVE_ACTION_BAR_LAYER
final public static int ABOVE_ACTION_BAR_LAYER(Code)



ABOVE_SYSTEM_BAR_LAYER
final public static int ABOVE_SYSTEM_BAR_LAYER(Code)
Above system tool bar layer.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.0pre7



ACTION_BAR
final public static int ACTION_BAR(Code)



ACTION_BAR_LAYER
final public static int ACTION_BAR_LAYER(Code)
Action bar layer.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.2pre1



BELOW_SEARCH_BAR_LAYER
final public static int BELOW_SEARCH_BAR_LAYER(Code)
Below search bar layer.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.0pre7



BELOW_STATUS_BAR_LAYER
final public static int BELOW_STATUS_BAR_LAYER(Code)
Status bar layer.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.2pre1



BELOW_SYSTEM_BAR_LAYER
final public static int BELOW_SYSTEM_BAR_LAYER(Code)
Below system tool bar layer.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.0pre7



BOTTOM_GROUP
final public static int BOTTOM_GROUP(Code)
The group of tool bars below the DockableWindowManager
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.0pre7



BOTTOM_LAYER
final public static int BOTTOM_LAYER(Code)
The lowest possible layer.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.0pre7



DEFAULT_GROUP
final public static int DEFAULT_GROUP(Code)



DEFAULT_LAYER
final public static int DEFAULT_LAYER(Code)
The default layer for tool bars with no preference.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.0pre7



SEARCH_BAR_LAYER
final public static int SEARCH_BAR_LAYER(Code)
Search bar layer.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.0pre7



STATUS_BAR_LAYER
final public static int STATUS_BAR_LAYER(Code)
Status bar layer.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.2pre1



SYSTEM_BAR_LAYER
final public static int SYSTEM_BAR_LAYER(Code)
System tool bar layer. jEdit uses this for the main tool bar.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.0pre7



TEXT_AREA
final public static int TEXT_AREA(Code)



TOP_GROUP
final public static int TOP_GROUP(Code)
The group of tool bars above the DockableWindowManager
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.0pre7



TOP_LAYER
final public static int TOP_LAYER(Code)
The highest possible layer.
See Also:   View.addToolBar(int,int,java.awt.Component)
since:
   jEdit 4.0pre7



VIEW
final public static int VIEW(Code)



next
View next(Code)



prev
View prev(Code)




Constructor Detail
View
View(Buffer buffer, ViewConfig config)(Code)




Method Detail
actionBar
public void actionBar()(Code)
Shows the action bar if needed, and sends keyboard focus there.
since:
   jEdit 4.2pre1



addToolBar
public void addToolBar(Component toolBar)(Code)
Adds a tool bar to this view.
Parameters:
  toolBar - The tool bar



addToolBar
public void addToolBar(int group, Component toolBar)(Code)
Adds a tool bar to this view.
Parameters:
  group - The tool bar group to add to
Parameters:
  toolBar - The tool bar
See Also:   org.gjt.sp.jedit.gui.ToolBarManager
since:
   jEdit 4.0pre7



addToolBar
public void addToolBar(int group, int layer, Component toolBar)(Code)
Adds a tool bar to this view.
Parameters:
  group - The tool bar group to add to
Parameters:
  layer - The layer of the group to add to
Parameters:
  toolBar - The tool bar
See Also:   org.gjt.sp.jedit.gui.ToolBarManager
since:
   jEdit 4.0pre7



close
void close()(Code)



getActionBar
final public ActionBar getActionBar()(Code)
Returns the action bar.
since:
   jEdit 4.2pre3



getBuffer
public Buffer getBuffer()(Code)
Returns the current edit pane's buffer.



getDockableWindowManager
public DockableWindowManager getDockableWindowManager()(Code)
Returns the dockable window manager associated with this view.
since:
   jEdit 2.6pre3



getEditPane
public EditPane getEditPane()(Code)
Returns the current edit pane.
since:
   jEdit 2.5pre2



getEditPanes
public EditPane[] getEditPanes()(Code)
Returns all edit panes.
since:
   jEdit 2.5pre2



getInputHandler
public InputHandler getInputHandler()(Code)
Returns the input handler.



getKeyEventInterceptor
public KeyListener getKeyEventInterceptor()(Code)
Returns the listener that will handle all key events in this view, if any. the key event interceptor or null



getMacroRecorder
public Macros.Recorder getMacroRecorder()(Code)
Returns the macro recorder.



getMinimumSize
public Dimension getMinimumSize()(Code)



getNext
public View getNext()(Code)
Returns the next view in the list.



getPrefixFocusOwner
public Component getPrefixFocusOwner()(Code)



getPrev
public View getPrev()(Code)
Returns the previous view in the list.



getSearchBar
final public SearchBar getSearchBar()(Code)
Returns the search bar.
since:
   jEdit 2.4pre4



getSplitPane
public JSplitPane getSplitPane()(Code)
Returns the top-level split pane, if any.
since:
   jEdit 2.3pre2



getStatus
public StatusBar getStatus()(Code)
Returns the status bar. The org.gjt.sp.jedit.gui.StatusBar.setMessage(String) and org.gjt.sp.jedit.gui.StatusBar.setMessageAndClear(String) methods can be called on the return value of this method to display status information to the user.
since:
   jEdit 3.2pre2



getTextArea
public JEditTextArea getTextArea()(Code)
Returns the current edit pane's text area.



getToolBar
public Box getToolBar()(Code)
Returns the view's tool bar.
since:
   jEdit 4.2pre1



getViewConfig
public ViewConfig getViewConfig()(Code)

since:
   jEdit 4.2pre1



goToBuffer
public EditPane goToBuffer(Buffer buffer)(Code)
If this buffer is open in one of the view's edit panes, sets focus to that edit pane. Otherwise, opens the buffer in the currently active edit pane.
Parameters:
  buffer - The buffer
since:
   jEdit 4.2pre1



handleMessage
public void handleMessage(EBMessage msg)(Code)



hideWaitCursor
public synchronized void hideWaitCursor()(Code)
Hides the wait cursor.



isClosed
public boolean isClosed()(Code)
Returns true if this view has been closed with jEdit.closeView(View) .



isPlainView
public boolean isPlainView()(Code)
Returns true if this is an auxilliary view with no dockable windows.
since:
   jEdit 4.1pre2



nextTextArea
public void nextTextArea()(Code)
Moves keyboard focus to the next text area.
since:
   jEdit 2.7pre4



prevTextArea
public void prevTextArea()(Code)
Moves keyboard focus to the previous text area.
since:
   jEdit 2.7pre4



processKeyEvent
public void processKeyEvent(KeyEvent evt)(Code)
Forwards key events directly to the input handler. This is slightly faster than using a KeyListener because some Swing overhead is avoided.



processKeyEvent
public void processKeyEvent(KeyEvent evt, boolean calledFromTextArea)(Code)
Forwards key events directly to the input handler. This is slightly faster than using a KeyListener because some Swing overhead is avoided.



processKeyEvent
public void processKeyEvent(KeyEvent evt, int from)(Code)
Forwards key events directly to the input handler. This is slightly faster than using a KeyListener because some Swing overhead is avoided.



processKeyEvent
public void processKeyEvent(KeyEvent evt, int from, boolean global)(Code)
Forwards key events directly to the input handler. This is slightly faster than using a KeyListener because some Swing overhead is avoided. org.gjt.sp.jedit.gui.InputHandler.processKeyEvent(java.awt.event.KeyEventintboolean)



quickHyperSearch
public void quickHyperSearch(boolean word)(Code)
Quick HyperSearch.
since:
   jEdit 4.0pre3



quickIncrementalSearch
public void quickIncrementalSearch(boolean word)(Code)
Quick search.
since:
   jEdit 4.0pre3



removeToolBar
public void removeToolBar(Component toolBar)(Code)
Removes a tool bar from this view.
Parameters:
  toolBar - The tool bar



resplit
public void resplit()(Code)
Restore the split configuration as it was before unsplitting.
since:
   jEdit 4.3pre1



setBuffer
public void setBuffer(Buffer buffer)(Code)
Sets the current edit pane's buffer.
Parameters:
  buffer - The buffer



setBuffer
public void setBuffer(Buffer buffer, boolean disableFileStatusCheck)(Code)
Sets the current edit pane's buffer.
Parameters:
  buffer - The buffer
Parameters:
  disableFileStatusCheck - Disables file status checkingregardless of the state of the checkFileStatus property



setInputHandler
public void setInputHandler(InputHandler inputHandler)(Code)
Sets the input handler.
Parameters:
  inputHandler - The new input handler



setKeyEventInterceptor
public void setKeyEventInterceptor(KeyListener listener)(Code)
Sets the listener that will handle all key events in this view. For example, the complete word command uses this so that all key events are passed to the word list popup while it is visible.
Parameters:
  listener - The key event interceptor.



setMacroRecorder
public void setMacroRecorder(Macros.Recorder recorder)(Code)
Sets the macro recorder.
Parameters:
  recorder - The macro recorder



setPrefixFocusOwner
public void setPrefixFocusOwner(Component prefixFocusOwner)(Code)



setWaitSocket
public void setWaitSocket(Socket waitSocket)(Code)
This socket is closed when the buffer is closed.



showWaitCursor
public synchronized void showWaitCursor()(Code)
Shows the wait cursor. This method and View.hideWaitCursor() are implemented using a reference count of requests for wait cursors, so that nested calls work correctly; however, you should be careful to use these methods in tandem.

To ensure that View.hideWaitCursor() is always called after a View.showWaitCursor() , use a try/finally block, like this:

try
 {
 view.showWaitCursor();
 // ...
 }
 finally
 {
 view.hideWaitCursor();
 }



split
public EditPane split(int orientation)(Code)
Splits the view.
since:
   jEdit 4.1pre2



splitHorizontally
public EditPane splitHorizontally()(Code)
Splits the view horizontally.
since:
   jEdit 4.1pre2



splitVertically
public EditPane splitVertically()(Code)
Splits the view vertically.
since:
   jEdit 4.1pre2



toString
public String toString()(Code)



unsplit
public void unsplit()(Code)
Unsplits the view.
since:
   jEdit 2.3pre2



unsplitCurrent
public void unsplitCurrent()(Code)
Removes the current split.
since:
   jEdit 2.3pre2



updateTitle
public void updateTitle()(Code)
Updates the title bar.



Fields inherited from javax.swing.JFrame
final public static int EXIT_ON_CLOSE(Code)(Java Doc)
protected AccessibleContext accessibleContext(Code)(Java Doc)
protected JRootPane rootPane(Code)(Java Doc)
protected boolean rootPaneCheckingEnabled(Code)(Java Doc)

Methods inherited from javax.swing.JFrame
protected void addImpl(Component comp, Object constraints, int index)(Code)(Java Doc)
protected JRootPane createRootPane()(Code)(Java Doc)
protected void frameInit()(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public Container getContentPane()(Code)(Java Doc)
public int getDefaultCloseOperation()(Code)(Java Doc)
public Component getGlassPane()(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
public JMenuBar getJMenuBar()(Code)(Java Doc)
public JLayeredPane getLayeredPane()(Code)(Java Doc)
public JRootPane getRootPane()(Code)(Java Doc)
public TransferHandler getTransferHandler()(Code)(Java Doc)
public static boolean isDefaultLookAndFeelDecorated()(Code)(Java Doc)
protected boolean isRootPaneCheckingEnabled()(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
protected void processWindowEvent(WindowEvent e)(Code)(Java Doc)
public void remove(Component comp)(Code)(Java Doc)
public void repaint(long time, int x, int y, int width, int height)(Code)(Java Doc)
public void setContentPane(Container contentPane)(Code)(Java Doc)
public void setDefaultCloseOperation(int operation)(Code)(Java Doc)
public static void setDefaultLookAndFeelDecorated(boolean defaultLookAndFeelDecorated)(Code)(Java Doc)
public void setGlassPane(Component glassPane)(Code)(Java Doc)
public void setIconImage(Image image)(Code)(Java Doc)
public void setJMenuBar(JMenuBar menubar)(Code)(Java Doc)
public void setLayeredPane(JLayeredPane layeredPane)(Code)(Java Doc)
public void setLayout(LayoutManager manager)(Code)(Java Doc)
protected void setRootPane(JRootPane root)(Code)(Java Doc)
protected void setRootPaneCheckingEnabled(boolean enabled)(Code)(Java Doc)
public void setTransferHandler(TransferHandler newHandler)(Code)(Java Doc)
public void update(Graphics g)(Code)(Java Doc)

Fields inherited from java.awt.Frame
final public static int CROSSHAIR_CURSOR(Code)(Java Doc)
final public static int DEFAULT_CURSOR(Code)(Java Doc)
final public static int E_RESIZE_CURSOR(Code)(Java Doc)
final public static int HAND_CURSOR(Code)(Java Doc)
final public static int ICONIFIED(Code)(Java Doc)
final public static int MAXIMIZED_BOTH(Code)(Java Doc)
final public static int MAXIMIZED_HORIZ(Code)(Java Doc)
final public static int MAXIMIZED_VERT(Code)(Java Doc)
final public static int MOVE_CURSOR(Code)(Java Doc)
final public static int NE_RESIZE_CURSOR(Code)(Java Doc)
final public static int NORMAL(Code)(Java Doc)
final public static int NW_RESIZE_CURSOR(Code)(Java Doc)
final public static int N_RESIZE_CURSOR(Code)(Java Doc)
final public static int SE_RESIZE_CURSOR(Code)(Java Doc)
final public static int SW_RESIZE_CURSOR(Code)(Java Doc)
final public static int S_RESIZE_CURSOR(Code)(Java Doc)
final public static int TEXT_CURSOR(Code)(Java Doc)
final public static int WAIT_CURSOR(Code)(Java Doc)
final public static int W_RESIZE_CURSOR(Code)(Java Doc)

Methods inherited from java.awt.Frame
public void addNotify()(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public int getCursorType()(Code)(Java Doc)
public synchronized int getExtendedState()(Code)(Java Doc)
public static Frame[] getFrames()(Code)(Java Doc)
public Image getIconImage()(Code)(Java Doc)
public Rectangle getMaximizedBounds()(Code)(Java Doc)
public MenuBar getMenuBar()(Code)(Java Doc)
public synchronized int getState()(Code)(Java Doc)
public String getTitle()(Code)(Java Doc)
public boolean isResizable()(Code)(Java Doc)
public boolean isUndecorated()(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public void remove(MenuComponent m)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public void setCursor(int cursorType)(Code)(Java Doc)
public synchronized void setExtendedState(int state)(Code)(Java Doc)
public void setIconImage(Image image)(Code)(Java Doc)
public synchronized void setMaximizedBounds(Rectangle bounds)(Code)(Java Doc)
public void setMenuBar(MenuBar mb)(Code)(Java Doc)
public void setResizable(boolean resizable)(Code)(Java Doc)
public synchronized void setState(int state)(Code)(Java Doc)
public void setTitle(String title)(Code)(Java Doc)
public void setUndecorated(boolean undecorated)(Code)(Java Doc)

Methods inherited from java.awt.Window
public void addNotify()(Code)(Java Doc)
public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc)
public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc)
public synchronized void addWindowFocusListener(WindowFocusListener l)(Code)(Java Doc)
public synchronized void addWindowListener(WindowListener l)(Code)(Java Doc)
public synchronized void addWindowStateListener(WindowStateListener l)(Code)(Java Doc)
public void applyResourceBundle(ResourceBundle rb)(Code)(Java Doc)
public void applyResourceBundle(String rbName)(Code)(Java Doc)
public void createBufferStrategy(int numBuffers)(Code)(Java Doc)
public void createBufferStrategy(int numBuffers, BufferCapabilities caps) throws AWTException(Code)(Java Doc)
public void dispose()(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public BufferStrategy getBufferStrategy()(Code)(Java Doc)
final public Container getFocusCycleRootAncestor()(Code)(Java Doc)
public Component getFocusOwner()(Code)(Java Doc)
public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc)
public boolean getFocusableWindowState()(Code)(Java Doc)
public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc)
public java.util.List<Image> getIconImages()(Code)(Java Doc)
public InputContext getInputContext()(Code)(Java Doc)
public T[] getListeners(Class<T> listenerType)(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Dialog.ModalExclusionType getModalExclusionType()(Code)(Java Doc)
public Component getMostRecentFocusOwner()(Code)(Java Doc)
public Window[] getOwnedWindows()(Code)(Java Doc)
public Window getOwner()(Code)(Java Doc)
public static Window[] getOwnerlessWindows()(Code)(Java Doc)
public Toolkit getToolkit()(Code)(Java Doc)
final public String getWarningString()(Code)(Java Doc)
public synchronized WindowFocusListener[] getWindowFocusListeners()(Code)(Java Doc)
public synchronized WindowListener[] getWindowListeners()(Code)(Java Doc)
public synchronized WindowStateListener[] getWindowStateListeners()(Code)(Java Doc)
public static Window[] getWindows()(Code)(Java Doc)
public void hide()(Code)(Java Doc)
public boolean isActive()(Code)(Java Doc)
final public boolean isAlwaysOnTop()(Code)(Java Doc)
public boolean isAlwaysOnTopSupported()(Code)(Java Doc)
public boolean isAutoRequestFocus()(Code)(Java Doc)
final public boolean isFocusCycleRoot()(Code)(Java Doc)
final public boolean isFocusableWindow()(Code)(Java Doc)
public boolean isFocused()(Code)(Java Doc)
public boolean isLocationByPlatform()(Code)(Java Doc)
public boolean isShowing()(Code)(Java Doc)
public void pack()(Code)(Java Doc)
public boolean postEvent(Event e)(Code)(Java Doc)
protected void processEvent(AWTEvent e)(Code)(Java Doc)
protected void processWindowEvent(WindowEvent e)(Code)(Java Doc)
protected void processWindowFocusEvent(WindowEvent e)(Code)(Java Doc)
protected void processWindowStateEvent(WindowEvent e)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public synchronized void removeWindowFocusListener(WindowFocusListener l)(Code)(Java Doc)
public synchronized void removeWindowListener(WindowListener l)(Code)(Java Doc)
public synchronized void removeWindowStateListener(WindowStateListener l)(Code)(Java Doc)
public void reshape(int x, int y, int width, int height)(Code)(Java Doc)
final public void setAlwaysOnTop(boolean alwaysOnTop) throws SecurityException(Code)(Java Doc)
public void setAutoRequestFocus(boolean autoRequestFocus)(Code)(Java Doc)
public void setBounds(int x, int y, int width, int height)(Code)(Java Doc)
public void setBounds(Rectangle r)(Code)(Java Doc)
public void setCursor(Cursor cursor)(Code)(Java Doc)
final public void setFocusCycleRoot(boolean focusCycleRoot)(Code)(Java Doc)
public void setFocusableWindowState(boolean focusableWindowState)(Code)(Java Doc)
public void setIconImage(Image image)(Code)(Java Doc)
public synchronized void setIconImages(java.util.List<? extends Image> icons)(Code)(Java Doc)
public void setLocationByPlatform(boolean locationByPlatform)(Code)(Java Doc)
public void setLocationRelativeTo(Component c)(Code)(Java Doc)
public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc)
public void setModalExclusionType(Dialog.ModalExclusionType exclusionType)(Code)(Java Doc)
public void setSize(Dimension d)(Code)(Java Doc)
public void setSize(int width, int height)(Code)(Java Doc)
public void setVisible(boolean b)(Code)(Java Doc)
public void show()(Code)(Java Doc)
public void toBack()(Code)(Java Doc)
public void toFront()(Code)(Java Doc)

Methods inherited from java.awt.Container
public Component add(Component comp)(Code)(Java Doc)
public Component add(String name, Component comp)(Code)(Java Doc)
public Component add(Component comp, int index)(Code)(Java Doc)
public void add(Component comp, Object constraints)(Code)(Java Doc)
public void add(Component comp, Object constraints, int index)(Code)(Java Doc)
public synchronized void addContainerListener(ContainerListener l)(Code)(Java Doc)
protected void addImpl(Component comp, Object constraints, int index)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc)
public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc)
public void applyComponentOrientation(ComponentOrientation o)(Code)(Java Doc)
public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc)
public int countComponents()(Code)(Java Doc)
public void deliverEvent(Event e)(Code)(Java Doc)
public void doLayout()(Code)(Java Doc)
public Component findComponentAt(int x, int y)(Code)(Java Doc)
public Component findComponentAt(Point p)(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public Component getComponent(int n)(Code)(Java Doc)
public Component getComponentAt(int x, int y)(Code)(Java Doc)
public Component getComponentAt(Point p)(Code)(Java Doc)
public int getComponentCount()(Code)(Java Doc)
public int getComponentZOrder(Component comp)(Code)(Java Doc)
public Component[] getComponents()(Code)(Java Doc)
public synchronized ContainerListener[] getContainerListeners()(Code)(Java Doc)
public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc)
public FocusTraversalPolicy getFocusTraversalPolicy()(Code)(Java Doc)
public Insets getInsets()(Code)(Java Doc)
public LayoutManager getLayout()(Code)(Java Doc)
public T[] getListeners(Class<T> listenerType)(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public Point getMousePosition(boolean allowChildren) throws HeadlessException(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public Insets insets()(Code)(Java Doc)
public void invalidate()(Code)(Java Doc)
public boolean isAncestorOf(Component c)(Code)(Java Doc)
public boolean isFocusCycleRoot(Container container)(Code)(Java Doc)
public boolean isFocusCycleRoot()(Code)(Java Doc)
final public boolean isFocusTraversalPolicyProvider()(Code)(Java Doc)
public boolean isFocusTraversalPolicySet()(Code)(Java Doc)
public void layout()(Code)(Java Doc)
public void list(PrintStream out, int indent)(Code)(Java Doc)
public void list(PrintWriter out, int indent)(Code)(Java Doc)
public Component locate(int x, int y)(Code)(Java Doc)
public Dimension minimumSize()(Code)(Java Doc)
public void paint(Graphics g)(Code)(Java Doc)
public void paintComponents(Graphics g)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public Dimension preferredSize()(Code)(Java Doc)
public void print(Graphics g)(Code)(Java Doc)
public void printComponents(Graphics g)(Code)(Java Doc)
protected void processContainerEvent(ContainerEvent e)(Code)(Java Doc)
protected void processEvent(AWTEvent e)(Code)(Java Doc)
public void remove(int index)(Code)(Java Doc)
public void remove(Component comp)(Code)(Java Doc)
public void removeAll()(Code)(Java Doc)
public synchronized void removeContainerListener(ContainerListener l)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public void setComponentZOrder(Component comp, int index)(Code)(Java Doc)
public void setFocusCycleRoot(boolean focusCycleRoot)(Code)(Java Doc)
public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc)
public void setFocusTraversalPolicy(FocusTraversalPolicy policy)(Code)(Java Doc)
final public void setFocusTraversalPolicyProvider(boolean provider)(Code)(Java Doc)
public void setFont(Font f)(Code)(Java Doc)
public void setLayout(LayoutManager mgr)(Code)(Java Doc)
public void transferFocusDownCycle()(Code)(Java Doc)
public void update(Graphics g)(Code)(Java Doc)
public void validate()(Code)(Java Doc)
protected void validateTree()(Code)(Java Doc)

Fields inherited from java.awt.Component
final public static float BOTTOM_ALIGNMENT(Code)(Java Doc)
final public static float CENTER_ALIGNMENT(Code)(Java Doc)
final public static float LEFT_ALIGNMENT(Code)(Java Doc)
final public static float RIGHT_ALIGNMENT(Code)(Java Doc)
final public static float TOP_ALIGNMENT(Code)(Java Doc)

Methods inherited from java.awt.Component
public boolean action(Event evt, Object what)(Code)(Java Doc)
public void add(PopupMenu popup)(Code)(Java Doc)
public synchronized void addComponentListener(ComponentListener l)(Code)(Java Doc)
public synchronized void addFocusListener(FocusListener l)(Code)(Java Doc)
public void addHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc)
public void addHierarchyListener(HierarchyListener l)(Code)(Java Doc)
public synchronized void addInputMethodListener(InputMethodListener l)(Code)(Java Doc)
public synchronized void addKeyListener(KeyListener l)(Code)(Java Doc)
public synchronized void addMouseListener(MouseListener l)(Code)(Java Doc)
public synchronized void addMouseMotionListener(MouseMotionListener l)(Code)(Java Doc)
public synchronized void addMouseWheelListener(MouseWheelListener l)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public synchronized void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc)
public synchronized void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc)
public void applyComponentOrientation(ComponentOrientation orientation)(Code)(Java Doc)
public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc)
public Rectangle bounds()(Code)(Java Doc)
public int checkImage(Image image, ImageObserver observer)(Code)(Java Doc)
public int checkImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc)
protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc)
public boolean contains(int x, int y)(Code)(Java Doc)
public boolean contains(Point p)(Code)(Java Doc)
public Image createImage(ImageProducer producer)(Code)(Java Doc)
public Image createImage(int width, int height)(Code)(Java Doc)
public VolatileImage createVolatileImage(int width, int height)(Code)(Java Doc)
public VolatileImage createVolatileImage(int width, int height, ImageCapabilities caps) throws AWTException(Code)(Java Doc)
public void deliverEvent(Event e)(Code)(Java Doc)
public void disable()(Code)(Java Doc)
final protected void disableEvents(long eventsToDisable)(Code)(Java Doc)
final public void dispatchEvent(AWTEvent e)(Code)(Java Doc)
public void doLayout()(Code)(Java Doc)
public void enable()(Code)(Java Doc)
public void enable(boolean b)(Code)(Java Doc)
final protected void enableEvents(long eventsToEnable)(Code)(Java Doc)
public void enableInputMethods(boolean enable)(Code)(Java Doc)
protected void firePropertyChange(String propertyName, Object oldValue, Object newValue)(Code)(Java Doc)
protected void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc)
protected void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, byte oldValue, byte newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, char oldValue, char newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, short oldValue, short newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, long oldValue, long newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, float oldValue, float newValue)(Code)(Java Doc)
public void firePropertyChange(String propertyName, double oldValue, double newValue)(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public int getBaseline(int width, int height)(Code)(Java Doc)
public BaselineResizeBehavior getBaselineResizeBehavior()(Code)(Java Doc)
public Rectangle getBounds()(Code)(Java Doc)
public Rectangle getBounds(Rectangle rv)(Code)(Java Doc)
public ColorModel getColorModel()(Code)(Java Doc)
public Component getComponentAt(int x, int y)(Code)(Java Doc)
public Component getComponentAt(Point p)(Code)(Java Doc)
public synchronized ComponentListener[] getComponentListeners()(Code)(Java Doc)
public ComponentOrientation getComponentOrientation()(Code)(Java Doc)
public Cursor getCursor()(Code)(Java Doc)
public synchronized DropTarget getDropTarget()(Code)(Java Doc)
public Container getFocusCycleRootAncestor()(Code)(Java Doc)
public synchronized FocusListener[] getFocusListeners()(Code)(Java Doc)
public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc)
public boolean getFocusTraversalKeysEnabled()(Code)(Java Doc)
public Font getFont()(Code)(Java Doc)
public FontMetrics getFontMetrics(Font font)(Code)(Java Doc)
public Color getForeground()(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc)
public int getHeight()(Code)(Java Doc)
public synchronized HierarchyBoundsListener[] getHierarchyBoundsListeners()(Code)(Java Doc)
public synchronized HierarchyListener[] getHierarchyListeners()(Code)(Java Doc)
public boolean getIgnoreRepaint()(Code)(Java Doc)
public InputContext getInputContext()(Code)(Java Doc)
public synchronized InputMethodListener[] getInputMethodListeners()(Code)(Java Doc)
public InputMethodRequests getInputMethodRequests()(Code)(Java Doc)
public synchronized KeyListener[] getKeyListeners()(Code)(Java Doc)
public T[] getListeners(Class<T> listenerType)(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Point getLocation()(Code)(Java Doc)
public Point getLocation(Point rv)(Code)(Java Doc)
public Point getLocationOnScreen()(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public synchronized MouseListener[] getMouseListeners()(Code)(Java Doc)
public synchronized MouseMotionListener[] getMouseMotionListeners()(Code)(Java Doc)
public Point getMousePosition() throws HeadlessException(Code)(Java Doc)
public synchronized MouseWheelListener[] getMouseWheelListeners()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
public Container getParent()(Code)(Java Doc)
public ComponentPeer getPeer()(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public synchronized PropertyChangeListener[] getPropertyChangeListeners()(Code)(Java Doc)
public synchronized PropertyChangeListener[] getPropertyChangeListeners(String propertyName)(Code)(Java Doc)
public Dimension getSize()(Code)(Java Doc)
public Dimension getSize(Dimension rv)(Code)(Java Doc)
public Toolkit getToolkit()(Code)(Java Doc)
final public Object getTreeLock()(Code)(Java Doc)
public int getWidth()(Code)(Java Doc)
public int getX()(Code)(Java Doc)
public int getY()(Code)(Java Doc)
public boolean gotFocus(Event evt, Object what)(Code)(Java Doc)
public boolean handleEvent(Event evt)(Code)(Java Doc)
public boolean hasFocus()(Code)(Java Doc)
public void hide()(Code)(Java Doc)
public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)(Code)(Java Doc)
public boolean inside(int x, int y)(Code)(Java Doc)
public void invalidate()(Code)(Java Doc)
public boolean isBackgroundSet()(Code)(Java Doc)
public boolean isCursorSet()(Code)(Java Doc)
public boolean isDisplayable()(Code)(Java Doc)
public boolean isDoubleBuffered()(Code)(Java Doc)
public boolean isEnabled()(Code)(Java Doc)
public boolean isFocusCycleRoot(Container container)(Code)(Java Doc)
public boolean isFocusOwner()(Code)(Java Doc)
public boolean isFocusTraversable()(Code)(Java Doc)
public boolean isFocusable()(Code)(Java Doc)
public boolean isFontSet()(Code)(Java Doc)
public boolean isForegroundSet()(Code)(Java Doc)
public boolean isLightweight()(Code)(Java Doc)
public boolean isMaximumSizeSet()(Code)(Java Doc)
public boolean isMinimumSizeSet()(Code)(Java Doc)
public boolean isOpaque()(Code)(Java Doc)
public boolean isPreferredSizeSet()(Code)(Java Doc)
public boolean isShowing()(Code)(Java Doc)
public boolean isValid()(Code)(Java Doc)
public boolean isVisible()(Code)(Java Doc)
public boolean keyDown(Event evt, int key)(Code)(Java Doc)
public boolean keyUp(Event evt, int key)(Code)(Java Doc)
public void layout()(Code)(Java Doc)
public void list()(Code)(Java Doc)
public void list(PrintStream out)(Code)(Java Doc)
public void list(PrintStream out, int indent)(Code)(Java Doc)
public void list(PrintWriter out)(Code)(Java Doc)
public void list(PrintWriter out, int indent)(Code)(Java Doc)
public Component locate(int x, int y)(Code)(Java Doc)
public Point location()(Code)(Java Doc)
public boolean lostFocus(Event evt, Object what)(Code)(Java Doc)
public Dimension minimumSize()(Code)(Java Doc)
public boolean mouseDown(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseDrag(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseEnter(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseExit(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseMove(Event evt, int x, int y)(Code)(Java Doc)
public boolean mouseUp(Event evt, int x, int y)(Code)(Java Doc)
public void move(int x, int y)(Code)(Java Doc)
public void nextFocus()(Code)(Java Doc)
public void paint(Graphics g)(Code)(Java Doc)
public void paintAll(Graphics g)(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public boolean postEvent(Event e)(Code)(Java Doc)
public Dimension preferredSize()(Code)(Java Doc)
public boolean prepareImage(Image image, ImageObserver observer)(Code)(Java Doc)
public boolean prepareImage(Image image, int width, int height, ImageObserver observer)(Code)(Java Doc)
public void print(Graphics g)(Code)(Java Doc)
public void printAll(Graphics g)(Code)(Java Doc)
protected void processComponentEvent(ComponentEvent e)(Code)(Java Doc)
protected void processEvent(AWTEvent e)(Code)(Java Doc)
protected void processFocusEvent(FocusEvent e)(Code)(Java Doc)
protected void processHierarchyBoundsEvent(HierarchyEvent e)(Code)(Java Doc)
protected void processHierarchyEvent(HierarchyEvent e)(Code)(Java Doc)
protected void processInputMethodEvent(InputMethodEvent e)(Code)(Java Doc)
protected void processKeyEvent(KeyEvent e)(Code)(Java Doc)
protected void processMouseEvent(MouseEvent e)(Code)(Java Doc)
protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc)
protected void processMouseWheelEvent(MouseWheelEvent e)(Code)(Java Doc)
public void remove(MenuComponent popup)(Code)(Java Doc)
public synchronized void removeComponentListener(ComponentListener l)(Code)(Java Doc)
public synchronized void removeFocusListener(FocusListener l)(Code)(Java Doc)
public void removeHierarchyBoundsListener(HierarchyBoundsListener l)(Code)(Java Doc)
public void removeHierarchyListener(HierarchyListener l)(Code)(Java Doc)
public synchronized void removeInputMethodListener(InputMethodListener l)(Code)(Java Doc)
public synchronized void removeKeyListener(KeyListener l)(Code)(Java Doc)
public synchronized void removeMouseListener(MouseListener l)(Code)(Java Doc)
public synchronized void removeMouseMotionListener(MouseMotionListener l)(Code)(Java Doc)
public synchronized void removeMouseWheelListener(MouseWheelListener l)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public synchronized void removePropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc)
public synchronized void removePropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc)
public void repaint()(Code)(Java Doc)
public void repaint(long tm)(Code)(Java Doc)
public void repaint(int x, int y, int width, int height)(Code)(Java Doc)
public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc)
public void requestFocus()(Code)(Java Doc)
protected boolean requestFocus(boolean temporary)(Code)(Java Doc)
public boolean requestFocusInWindow()(Code)(Java Doc)
protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc)
public void reshape(int x, int y, int width, int height)(Code)(Java Doc)
public void resize(int width, int height)(Code)(Java Doc)
public void resize(Dimension d)(Code)(Java Doc)
public void setBackground(Color c)(Code)(Java Doc)
public void setBounds(int x, int y, int width, int height)(Code)(Java Doc)
public void setBounds(Rectangle r)(Code)(Java Doc)
public void setComponentOrientation(ComponentOrientation o)(Code)(Java Doc)
public void setCursor(Cursor cursor)(Code)(Java Doc)
public synchronized void setDropTarget(DropTarget dt)(Code)(Java Doc)
public void setEnabled(boolean b)(Code)(Java Doc)
public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc)
public void setFocusTraversalKeysEnabled(boolean focusTraversalKeysEnabled)(Code)(Java Doc)
public void setFocusable(boolean focusable)(Code)(Java Doc)
public void setFont(Font f)(Code)(Java Doc)
public void setForeground(Color c)(Code)(Java Doc)
public void setIgnoreRepaint(boolean ignoreRepaint)(Code)(Java Doc)
public void setLocale(Locale l)(Code)(Java Doc)
public void setLocation(int x, int y)(Code)(Java Doc)
public void setLocation(Point p)(Code)(Java Doc)
public void setMaximumSize(Dimension maximumSize)(Code)(Java Doc)
public void setMinimumSize(Dimension minimumSize)(Code)(Java Doc)
public void setName(String name)(Code)(Java Doc)
public void setPreferredSize(Dimension preferredSize)(Code)(Java Doc)
public void setSize(int width, int height)(Code)(Java Doc)
public void setSize(Dimension d)(Code)(Java Doc)
public void setVisible(boolean b)(Code)(Java Doc)
public void show()(Code)(Java Doc)
public void show(boolean b)(Code)(Java Doc)
public Dimension size()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public void transferFocus()(Code)(Java Doc)
public void transferFocusBackward()(Code)(Java Doc)
public void transferFocusUpCycle()(Code)(Java Doc)
public void update(Graphics g)(Code)(Java Doc)
public void validate()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.