Java Doc for VariableInput.java in  » Science » jcm1-source » edu » hws » jcm » awt » 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 » Science » jcm1 source » edu.hws.jcm.awt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.Component
      java.awt.TextComponent
         java.awt.TextField
            edu.hws.jcm.awt.VariableInput

VariableInput
public class VariableInput extends TextField implements InputObject,Tieable,Value(Code)
A VariableInput is an input box into which the user can type a real number value, which becomes the value of an associated Variable. The value of the Variable can change only when the VariableInput's checkInput() method is called (usually by a Controller). See the Controller class for more information.

Whenever checkInput is called, an error of type JCMError might be generated. If throwErrors is true, this error is thrown; if it is false, the error is caught, the value of the variable is set to Double.NaN, and no error is thrown. The error message associated with the error can be retrieved by calling getErrorMessage(), if desired. (This value is null if no error occurred the last time checkInput was called.)

A VariableInput is a Value, so it can be used directly where a Value object is needed.

An VariableInput will ordinarily be registered with a Controller in TWO ways: It's added to a Controller with the Controller's add() method. This makes the Controller call the VariableInput's checkInput() method during the Controller's compute() method. Secondly, a Controller is set as the "onUserAction" property. This causes the Controller's compute() method to be called when the user presses return in the VariableInput box. This is optional-- you might, for example, only want the Controller to compute() when a Compute button is pressed. You can also set the VariableInput's onTextChange property to a Controller that you want to compute every time the text in the box changes.

After the VariableInput is created, it is possible to specify the largest and smallest allowed values for the variable. It is also possible to specify what sytle of input is allowed. The style can be to allow any constant expression, constant real numbers only, or integers only. Set these parameters with setMin(), setMax(), and setInputStyle(). For setInputStyle(), the legal parameter values are VariableInput.EXPRESSION, VariableInput.REAL, and VariableInput.INTEGER. The default input style is EXPRESSION.



Field Summary
final public static  intEXPRESSION
     A constant for use in the setInputStyle() method.
final public static  intINTEGER
     A constant for use in the setInputStyle() method.
final public static  intREAL
     A constant for use in the setInputStyle() method.
protected  StringerrorMessage
     Error message from the most recent time checkInput() as called.
protected  intinputStyle
     One of the constant values EXPRESSION, REAL, or INTEGER, specifying the style of input.
protected  doublemaxValue
     Largest allowable value.
protected  doubleminValue
     Smallest allowable value.
protected  StringpreviousContents
     This is set to true if the text in the box has been changed since the last time the value of the variable was checked by checkInput().
protected  longserialNumber
     This serial number is increased each time the value of the variable changes.
protected  booleanthrowErrors
     True if an error should be thrown when checkInput() is calles and the contents do not define a legal number.
protected  VIvariable
     The Variable that represents the value of this input box.

Constructor Summary
public  VariableInput()
     Create an unnamed VariableInput with initial contents "0".
public  VariableInput(String name, String initialString)
     Construct a VariableInput with the given name and initial String (which can both be null).
public  VariableInput(String name, String initialString, Parser parser)
     Create a VariableInput just as in the constructor VariableInput(String,String).

Method Summary
public  voidaddTo(Parser p)
     A convenience method that registers this VariableInput's variable with Parser p (but only if both p and the name of the variable are non-null).
public  voidcheckInput()
     Check whether the contents are valid, and change the value of the associated variable if the new contents do not match the current value.
protected  doubleconvertInput(String num)
     Convert a string into a real value.
public  StringgetErrorMessage()
     Get error message from previous call to checkInput().
public  intgetInputStyle()
     Return the input style, which determines what types of things are allowed in the input box.
public  doublegetMax()
     Return the maximum value that will be accepted in this VariableInput box.
public  doublegetMin()
     Return the minimum value that will be accepted in this VariableInput box.
public  ControllergetOnTextChange()
    
public  ControllergetOnUserAction()
     Return the Controller, if any, that is notified when the user presses return in this text-input box.
public  longgetSerialNumber()
     Return this object's serial number, which increases whenever the value of the associated variable changes.
public  booleangetThrowErrors()
     Return the value of the throwErrors property.
public  doublegetVal()
     Return the value of the associated variable, which might not reflect the value of the contents of the input box.
public  VariablegetVariable()
     Get the associated variable for the VariableInput box.
public  voidnotifyControllerOnChange(Controller c)
     Method required by InputObject interface; in this class, it simply calls setOnUserAction(c).
public  voidprocessActionEvent(ActionEvent evt)
     Overridden to call onUserAction.compute() if onUserAction is non-null.
public  voidprocessTextEvent(TextEvent evt)
     Overridden to call onUserAction.compute() if onUserAction is non-null.
public  voidsetInputStyle(int style)
     Specify what types of things are allowed in the input box. The value of the parameter, style, must be one of the constants VariableInput.EXPRESSION, VariableInput.REAL, or VariableInput.INTEGER.
public  voidsetMax(double max)
     Specify the largest allowed value for the content of this VariableInput box.
public  voidsetMin(double min)
     Specify the smallest allowed value for the content of this VariableInput box.
public  voidsetName(String name)
     Set the name of the variable.
public  voidsetOnTextChange(Controller c)
     If the Controller, cm is non-null, then its compute() method will be called whenever the text in this input box changes.
public  voidsetOnUserAction(Controller c)
     If the Controller, c, is non-null, then its compute() method will be called whenever the user presses the return key while typing in this text-input box.
public  voidsetText(String text)
     This overrides the setText() method from the TextField class so that it will also force the contents to be checked the next time the checkInput() method is called.
public  voidsetThrowErrors(boolean throwErrors)
     Set the throwErrors property.
public  voidsetVal(double d)
     Set the value of the associated variable.
public  voidsync(Tie tie, Tieable newest)
     Synchronize serial number and value with newest, unless this VariableInput is itself newest.
public  JCMPanelwithLabel()
     Convenience method for creating a component containing this VariableInput together with a label of the form " = ".
public  JCMPanelwithLabel(Color back, Color fore)
     Convenience method for creating a component containing this VariableInput together with a label of the form "name = ".

Field Detail
EXPRESSION
final public static int EXPRESSION(Code)
A constant for use in the setInputStyle() method. Any constant expression is allowed.



INTEGER
final public static int INTEGER(Code)
A constant for use in the setInputStyle() method. Only integers are allowed.



REAL
final public static int REAL(Code)
A constant for use in the setInputStyle() method. Only real numbers are allowed.



errorMessage
protected String errorMessage(Code)
Error message from the most recent time checkInput() as called. Null if there was no error.



inputStyle
protected int inputStyle(Code)
One of the constant values EXPRESSION, REAL, or INTEGER, specifying the style of input.



maxValue
protected double maxValue(Code)
Largest allowable value.



minValue
protected double minValue(Code)
Smallest allowable value.



previousContents
protected String previousContents(Code)
This is set to true if the text in the box has been changed since the last time the value of the variable was checked by checkInput().



serialNumber
protected long serialNumber(Code)
This serial number is increased each time the value of the variable changes.



throwErrors
protected boolean throwErrors(Code)
True if an error should be thrown when checkInput() is calles and the contents do not define a legal number. True by default.



variable
protected VI variable(Code)
The Variable that represents the value of this input box. (VI is a private nested class inside VariableInput.)




Constructor Detail
VariableInput
public VariableInput()(Code)
Create an unnamed VariableInput with initial contents "0".



VariableInput
public VariableInput(String name, String initialString)(Code)
Construct a VariableInput with the given name and initial String (which can both be null). If initialString is null, the string "0" is used. No error occurs in the constructor if the initialString does not represent a legal value (A string rather than a double is used for initialization since the initial content can be an expression such as "pi/2".) If name is not null, it is used as the name of the VariableInput component as well as the name of the associated variable.



VariableInput
public VariableInput(String name, String initialString, Parser parser)(Code)
Create a VariableInput just as in the constructor VariableInput(String,String). Then, if both parser and name are non-null, register the associated variable with the parser.




Method Detail
addTo
public void addTo(Parser p)(Code)
A convenience method that registers this VariableInput's variable with Parser p (but only if both p and the name of the variable are non-null).



checkInput
public void checkInput()(Code)
Check whether the contents are valid, and change the value of the associated variable if the new contents do not match the current value. This might throw an error of type JCMError, if throwErrors is true. This is usually called by a Controller.



convertInput
protected double convertInput(String num)(Code)
Convert a string into a real value. The parameter is taken from the input box when this method is called by VI.checkInput() Throw a JCMError if any error is found in the input.
Parameters:
  num - String to be converted the real value.



getErrorMessage
public String getErrorMessage()(Code)
Get error message from previous call to checkInput(). Returns null if there was no error.



getInputStyle
public int getInputStyle()(Code)
Return the input style, which determines what types of things are allowed in the input box. The returned value is one of the contstants EXPRESSION, REAL, or INTEGER



getMax
public double getMax()(Code)
Return the maximum value that will be accepted in this VariableInput box.



getMin
public double getMin()(Code)
Return the minimum value that will be accepted in this VariableInput box.



getOnTextChange
public Controller getOnTextChange()(Code)
Return the Controller, if any, that is notified when the text in this input box changes



getOnUserAction
public Controller getOnUserAction()(Code)
Return the Controller, if any, that is notified when the user presses return in this text-input box.



getSerialNumber
public long getSerialNumber()(Code)
Return this object's serial number, which increases whenever the value of the associated variable changes.



getThrowErrors
public boolean getThrowErrors()(Code)
Return the value of the throwErrors property.



getVal
public double getVal()(Code)
Return the value of the associated variable, which might not reflect the value of the contents of the input box. The value of the variable changes only when the checkInput() method is called, or when the setVal() method is called. Call checkInput() first, if you want to be sure of getting the same value that is currently shown in the box.



getVariable
public Variable getVariable()(Code)
Get the associated variable for the VariableInput box. You will need this, for example, if you want to register the variable with a Parser.



notifyControllerOnChange
public void notifyControllerOnChange(Controller c)(Code)
Method required by InputObject interface; in this class, it simply calls setOnUserAction(c). This is meant to be called by JCMPanel.gatherInputs().



processActionEvent
public void processActionEvent(ActionEvent evt)(Code)
Overridden to call onUserAction.compute() if onUserAction is non-null. This is not meant to be called directly.



processTextEvent
public void processTextEvent(TextEvent evt)(Code)
Overridden to call onUserAction.compute() if onUserAction is non-null. This is not meant to be called directly.



setInputStyle
public void setInputStyle(int style)(Code)
Specify what types of things are allowed in the input box. The value of the parameter, style, must be one of the constants VariableInput.EXPRESSION, VariableInput.REAL, or VariableInput.INTEGER. If not, the call to setInputStyle is ignored.



setMax
public void setMax(double max)(Code)
Specify the largest allowed value for the content of this VariableInput box.



setMin
public void setMin(double min)(Code)
Specify the smallest allowed value for the content of this VariableInput box.



setName
public void setName(String name)(Code)
Set the name of the variable. This should not be called while the variable is registered with a Parser. The name of the VariableInput Component is also set to name, if the name is non=null.



setOnTextChange
public void setOnTextChange(Controller c)(Code)
If the Controller, cm is non-null, then its compute() method will be called whenever the text in this input box changes. Furthermore, the throwErrors property will be set to false, to avoid throwing multiple errors while the user is typing. (You can change it back to true if you want by calling setThrowErrors(true).)



setOnUserAction
public void setOnUserAction(Controller c)(Code)
If the Controller, c, is non-null, then its compute() method will be called whenever the user presses the return key while typing in this text-input box.



setText
public void setText(String text)(Code)
This overrides the setText() method from the TextField class so that it will also force the contents to be checked the next time the checkInput() method is called.
Parameters:
  text - change text to this.



setThrowErrors
public void setThrowErrors(boolean throwErrors)(Code)
Set the throwErrors property. If the value is true, then an error will be thrown by the checkInput() method when the contents of the VariableInput box are not legal. Otherwise, no error is thrown; the value of the variable is just set to Double.NaN.



setVal
public void setVal(double d)(Code)
Set the value of the associated variable. Also sets the content of the input box.



sync
public void sync(Tie tie, Tieable newest)(Code)
Synchronize serial number and value with newest, unless this VariableInput is itself newest. This is required by the Tieable interface, and is usually called by an object of type Tie.



withLabel
public JCMPanel withLabel()(Code)
Convenience method for creating a component containing this VariableInput together with a label of the form " = ". This version uses default colors for the label, which are inherited from the containing component.



withLabel
public JCMPanel withLabel(Color back, Color fore)(Code)
Convenience method for creating a component containing this VariableInput together with a label of the form "name = ". Uses the given background and foreground colors for the label and the panel. The colors can be null to use the defaults, which will be inherited from the containing Component.



Methods inherited from java.awt.TextField
public synchronized void addActionListener(ActionListener l)(Code)(Java Doc)
public void addNotify()(Code)(Java Doc)
public boolean echoCharIsSet()(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public synchronized ActionListener[] getActionListeners()(Code)(Java Doc)
public int getColumns()(Code)(Java Doc)
public char getEchoChar()(Code)(Java Doc)
public T[] getListeners(Class<T> listenerType)(Code)(Java Doc)
public Dimension getMinimumSize(int columns)(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public Dimension getPreferredSize(int columns)(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public Dimension minimumSize(int columns)(Code)(Java Doc)
public Dimension minimumSize()(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
public Dimension preferredSize(int columns)(Code)(Java Doc)
public Dimension preferredSize()(Code)(Java Doc)
protected void processActionEvent(ActionEvent e)(Code)(Java Doc)
protected void processEvent(AWTEvent e)(Code)(Java Doc)
public synchronized void removeActionListener(ActionListener l)(Code)(Java Doc)
public void setColumns(int columns)(Code)(Java Doc)
public void setEchoChar(char c)(Code)(Java Doc)
public synchronized void setEchoCharacter(char c)(Code)(Java Doc)
public void setText(String t)(Code)(Java Doc)

Fields inherited from java.awt.TextComponent
protected transient TextListener textListener(Code)(Java Doc)

Methods inherited from java.awt.TextComponent
public void addNotify()(Code)(Java Doc)
public synchronized void addTextListener(TextListener l)(Code)(Java Doc)
public void enableInputMethods(boolean enable)(Code)(Java Doc)
public AccessibleContext getAccessibleContext()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public synchronized int getCaretPosition()(Code)(Java Doc)
public InputMethodRequests getInputMethodRequests()(Code)(Java Doc)
public T[] getListeners(Class<T> listenerType)(Code)(Java Doc)
public synchronized String getSelectedText()(Code)(Java Doc)
public synchronized int getSelectionEnd()(Code)(Java Doc)
public synchronized int getSelectionStart()(Code)(Java Doc)
public synchronized String getText()(Code)(Java Doc)
public synchronized TextListener[] getTextListeners()(Code)(Java Doc)
public boolean isEditable()(Code)(Java Doc)
protected String paramString()(Code)(Java Doc)
protected void processEvent(AWTEvent e)(Code)(Java Doc)
protected void processTextEvent(TextEvent e)(Code)(Java Doc)
public void removeNotify()(Code)(Java Doc)
public synchronized void removeTextListener(TextListener l)(Code)(Java Doc)
public synchronized void select(int selectionStart, int selectionEnd)(Code)(Java Doc)
public synchronized void selectAll()(Code)(Java Doc)
public void setBackground(Color c)(Code)(Java Doc)
public synchronized void setCaretPosition(int position)(Code)(Java Doc)
public synchronized void setEditable(boolean b)(Code)(Java Doc)
public synchronized void setSelectionEnd(int selectionEnd)(Code)(Java Doc)
public synchronized void setSelectionStart(int selectionStart)(Code)(Java Doc)
public synchronized void setText(String t)(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.