| java.lang.Object java.awt.Component java.awt.Scrollbar edu.hws.jcm.awt.VariableSlider
VariableSlider | public class VariableSlider extends Scrollbar implements InputObject,Tieable,Value(Code) | | A VariableSlider is a slider (implemented as a Scrollbar) whose
position represents the value of an associated variable.
The range of values represented by the slider is given by a pair of
Value objects. They can be specified in the constructor or later with the
setMin and setMax methods. A VariableSlider has an associated variable
that represents the value of the slider. Note that the value of the variable
can change only when the setInput() or checkInput() method is called.
If you want the value of the variable to track the position
of the slider as it is is manipulated by the user, add the slider to
a Controller and set the Controller as the Slider's "onUserAction" property.
This allows other objects that depend on the values of the slider to
be recomputed by the controller when the value changes, as long as they
are also registered with the Controller.
Some points to note:
1) setVal() can set a value outside the range from min to max,
which will persist until the next time checkInput()
or setVal() is called again.
2) If the value of min or max changes, the value of this variable
will not change EXCEPT that it is clamped to the range between min and max.
3) Min does not have to be less than max.
4) The checkInput() routine only sets the needValueCheck flag to true.
(The setVal() and getVal() routines both set this flag to false.) This "lazy evaluation" is used because
checkInput() can't compute the new value itself. (The max and min
might depend on Values that are themselves about to change when some
other object's checkInput() mehtod is called.)
5) getVal() returns the current value, as stored in the variable,
UNLESS needValueCheck is true. In that case, it recomputes
the value first. getSerialNumber() works similarly.
6) A VariableSlider never throws JCMErrors. If an error occurs when min
or max is evaluated, the value of the variable associated with this VariableSlider
becomes undefined. (The point is, it doesn't generate any errors of its own.
The error would be caused by other InputObjects which should throw
their own errors when their checkInput() methods are called.)
|
Field Summary | |
protected boolean | integerValued If this is true, then the value of the
variable associated with this slider is
an integer. | protected int | intervals | protected double | minValmaxVal The values found for min and max the last time
checkInput() was called. | protected Value | minmax The Values that specify the range of values represented
by the slider. | protected boolean | needsValueCheck This is set to true when checkInput() is called
to indicate that the min and max values must be
checked the next time getVal() is called. | protected int | oldPosition This is the position of the scrollbar the last time
getVal() or setVal() was called. | protected long | serialNumber This increases every time the value of the variable changes. | protected VS | variable The variable associated with this VariableSlider. |
Constructor Summary | |
public | VariableSlider() Create a horizontal variable slider with no name and with a default
value range of -5 to 5. | public | VariableSlider(Value min, Value max) Create a horizontal variable slider with no name and with the
specified range of values. | public | VariableSlider(String name, Value min, Value max, Parser p) Create a horizontal variable slider with the given name and range of
values, and register it with the given parser (but only if
both name and p are non-null). | public | VariableSlider(String name, Value min, Value max, Parser p, int intervals, int orientation) Create a variable slider with the given name and range of
values, and register it with the given parser (but only if
both name and p are non-null). |
Method Summary | |
public void | addTo(Parser p) A convenience method that registers this VariableSlider's variable
with p (but only if both p and the name of the variable are non-null). | public void | checkInput() From the InputObject interface. | public boolean | getIntegerValued() Return a boolean which is true if the VariableSlider restricts ranges of values to integers, false otherwise. | public Value | getMax() Get the Value object that gives the value of the variable when the slider is
at the right (or top) of the scrollbar. | public Value | getMin() Get the Value object that gives the value of the variable when the slider is
at the left (or bottom) of the scrollbar. | public Controller | getOnUserAction() Return the Controller, if any, that is notified when the user
adjusts the position of the scroll bar. | public Dimension | getPreferredSize() Modify getPreferredSize to return a width of
200, if the scrollbar is horzontal, or a height
of 200, if it is vertical. | public long | getSerialNumber() Return this object's serial number, which is increased every time the
value changes. | public double | getVal() Get the value of this VariableSlider. | public Variable | getVariable() Return the variable associated with this VariableSlider. | public void | notifyControllerOnChange(Controller c) Method required by InputObject interface; in this class, it simply calls
setOnUserAction(c). | public void | processAdjustmentEvent(AdjustmentEvent evt) Overridden to call onUserAction.compute() if onUserAction is non-null. | public void | setIntegerValued(boolean b) If set to true, restrict the values of the variable associated with this
slider to be integers. | public void | setMax(Value v) Set the value that the variable has when the slider is at the right (or
top) of the scrollbar. | public void | setMin(Value v) Set the value that the variable has when the slider is at the left (or
bottom) of the scrollbar. | public void | setName(String name) Set the name of the associated variable. | public void | setOnUserAction(Controller c) If the Controller, c, is non-null, then its compute method will be called whenever
the user adjusts the position of the scroll bar. | public void | setVal(double x) Set the value of the variable to x. | public void | sync(Tie tie, Tieable newest) Change the value and serial number of this object to match
those of newest. |
integerValued | protected boolean integerValued(Code) | | If this is true, then the value of the
variable associated with this slider is
an integer. Furthermore, the number of
intervals on the slider is set to be
the same as the range of possible values
(unless this range is too big).
|
intervals | protected int intervals(Code) | | The number of possible value of the scrollbar
(Unless integerValued is true.)
|
minValmaxVal | protected double minValmaxVal(Code) | | The values found for min and max the last time
checkInput() was called.
|
minmax | protected Value minmax(Code) | | The Values that specify the range of values represented
by the slider. min does not have to be less than max.
|
needsValueCheck | protected boolean needsValueCheck(Code) | | This is set to true when checkInput() is called
to indicate that the min and max values must be
checked the next time getVal() is called.
|
oldPosition | protected int oldPosition(Code) | | This is the position of the scrollbar the last time
getVal() or setVal() was called. It is used to check
whether the user has repositioned the slider.
|
serialNumber | protected long serialNumber(Code) | | This increases every time the value of the variable changes.
|
variable | protected VS variable(Code) | | The variable associated with this VariableSlider.
VS is a nested private class, defined below.
|
VariableSlider | public VariableSlider()(Code) | | Create a horizontal variable slider with no name and with a default
value range of -5 to 5.
|
VariableSlider | public VariableSlider(Value min, Value max)(Code) | | Create a horizontal variable slider with no name and with the
specified range of values. If min is null, a default
value -5 is used. If max is null, a default value 5 is used.
|
VariableSlider | public VariableSlider(String name, Value min, Value max, Parser p)(Code) | | Create a horizontal variable slider with the given name and range of
values, and register it with the given parser (but only if
both name and p are non-null). If min is null, a default
value -5 is used. If max is null, a default value 5 is used.
|
VariableSlider | public VariableSlider(String name, Value min, Value max, Parser p, int intervals, int orientation)(Code) | | Create a variable slider with the given name and range of
values, and register it with the given parser (but only if
both name and p are non-null). The "intervals" parameter specifes
how many different positions there are on the slider. (The value
of the scrollbar ranges from 0 to intervals.) If intervals is <= 0,
it will be set to 1000. If it is between 1 and 9, it will be set to 10.
The orientation must be either Scrollbar.HORIZONTAL or Scrollbar.VERTICAL.
It specifies whether this is a horizontal or vertical scrollbar.
If min is null, a default value -5 is used. If max is null, a default
value 5 is used.
Parameters: name - name for this VariableSlider. Parameters: min - minimum value for slider. Parameters: max - maximum value for slider. Parameters: p - register VariableSlider with this Parser. Parameters: intervals - discrete positions on slider. Parameters: orientation - Scrollbar.HORIZONTAL or Scrollbar.VERTICAL. |
addTo | public void addTo(Parser p)(Code) | | A convenience method that registers this VariableSlider's variable
with p (but only if both p and the name of the variable are non-null).
|
checkInput | public void checkInput()(Code) | | From the InputObject interface. This will force the slider to recompute
its max and min values, and possibly clamp its value between these two
extremes) the next time the value or serial number is checked. This is
ordinarily called by a Controller.
|
getIntegerValued | public boolean getIntegerValued()(Code) | | Return a boolean which is true if the VariableSlider restricts ranges of values to integers, false otherwise.
|
getMax | public Value getMax()(Code) | | Get the Value object that gives the value of the variable when the slider is
at the right (or top) of the scrollbar. The Value is always non-null.
|
getMin | public Value getMin()(Code) | | Get the Value object that gives the value of the variable when the slider is
at the left (or bottom) of the scrollbar. The Value is always non-null.
|
getOnUserAction | public Controller getOnUserAction()(Code) | | Return the Controller, if any, that is notified when the user
adjusts the position of the scroll bar.
|
getPreferredSize | public Dimension getPreferredSize()(Code) | | Modify getPreferredSize to return a width of
200, if the scrollbar is horzontal, or a height
of 200, if it is vertical. This is not meant to
be called directly.
|
getSerialNumber | public long getSerialNumber()(Code) | | Return this object's serial number, which is increased every time the
value changes.
|
getVal | public double getVal()(Code) | | Get the value of this VariableSlider. (If needsValueCheck is
true, then the value is recomputed. Otherwise, the current
value is returned.)
|
getVariable | public Variable getVariable()(Code) | | Return the variable associated with this VariableSlider.
|
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().
|
processAdjustmentEvent | public void processAdjustmentEvent(AdjustmentEvent evt)(Code) | | Overridden to call onUserAction.compute() if onUserAction is non-null.
This is not meant to be called directly.
|
setIntegerValued | public void setIntegerValued(boolean b)(Code) | | If set to true, restrict the values of the variable associated with this
slider to be integers. Furthermore, the number of intervals on the
scrollbar will be set to be the same as the size of the range from
min to max (unless this range is too big). The setVal()
method can still set the value of the variable to be a non-integer.
|
setMax | public void setMax(Value v)(Code) | | Set the value that the variable has when the slider is at the right (or
top) of the scrollbar. If v is null, 5 is used as the default value.
|
setMin | public void setMin(Value v)(Code) | | Set the value that the variable has when the slider is at the left (or
bottom) of the scrollbar. If v is null, -5 is used as the default value.
|
setName | public void setName(String name)(Code) | | Set the name of the associated variable. You shouldn't do this
if it has been added to a parser. If name is non-null, then
the name of this Component is also set to the specified name.
|
setOnUserAction | public void setOnUserAction(Controller c)(Code) | | If the Controller, c, is non-null, then its compute method will be called whenever
the user adjusts the position of the scroll bar.
|
setVal | public void setVal(double x)(Code) | | Set the value of the variable to x. If possible, set the
value on the scroll bar to match.
|
sync | public void sync(Tie tie, Tieable newest)(Code) | | Change the value and serial number of this object to match
those of newest. See the Tie class for more information.
This is not meant to be called directly
|
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)
|
|
|