| java.lang.Object java.awt.Component java.awt.Container java.awt.Panel edu.hws.jcm.draw.LimitControlPanel
LimitControlPanel | public class LimitControlPanel extends Panel implements InputObject,Tieable,Limits,ActionListener(Code) | | A LimitControlPanel has four input boxes for specifying the xmin, xmax, ymin, and ymax
of a CoodinateRect. You can actually add more than one CoordinteRect to the LimitControlPanel.
This will synchronize the coordinate systems on the all the CoordinateRects that is controlls.
A LimitControlPanel can also contain a number of standard buttons, such as buttons for
zooming the coordinates in and out. The buttons are specfied using constants
defined in this class. It is possible to obtain standard buttons so that they can
be displayed outside the LimitControlPanel. Furthermore, it is also possible to add other components
to the panel, using the addRange(), addComponent(), and addComponentPair() methods.
(The standard add() method from the Component class is overridded to call
addComponent().) Any VariableInput added to the LimitControl Panel will appear with its name
as a label, just above the input box.
Ordinarily, all the components are just stacked up vertically. However, if
you set the useTwoColumnsIfPossible property to true, then they will be in two columns, unless
the width of the Panel is too small for two columns. Pairs of items added
with addRange() or addComponentPair() will appear on the same row. An item
added with addComponent() will appear on a row by itself. As for the standard
buttons, the following pairs will appear together, IF they are added at the
same time: SET_LIMITS and EQUALUIZE; ZOOM_IN and ZOOM_OUT; SAVE and RESTORE.
A LimitControlPanel can have an error reporter, which is used to report
any errors that are found in the input boxes for xmin, xmax, ymin, ymax
(or other VariableInputs added with addRange()). Except for these
input boxes, other coponents are NOT checked for errors.
|
Field Summary | |
final public static int | ALL_BUTTONS A constant that can be used in the addButton() method to add all possible buttons to the LimitControlPanel. | final public static int | EQUALIZE A constant that can be used in the addButton() method to add a button to the LimitControlPanel. | final public static int | RESTORE A constant that can be used in the addButton() method to add a button to the LimitControlPanel. | final public static int | SAVE A constant that can be used in the addButton() method to add a button to the LimitControlPanel. | final public static int | SET_LIMITS A constant that can be used in the addButton() method to add a button to the LimitControlPanel. | final public static int | ZOOM_IN A constant that can be used in the addButton() method to add a button to the LimitControlPanel. | final public static int | ZOOM_OUT A constant that can be used in the addButton() method to add a button to the LimitControlPanel. | protected int | buttons Set of installed buttons. | protected CoordinateRect | coords The first CoordinateRect tied to this LimitControlPanel. | protected ErrorReporter | errorReporter For reporting errors in user input. | protected Vector | items Vector of components and component pairs that have
been added to this panel, including at least the xmin, xmax, ymin, ymax
input boxes. | protected long | serialNumber This is increased when the user changes the limits. | protected Tie | syncWith A Tie holding this panel and the CoordinateRects that it controls. | protected boolean | twoColumn Use two columns for display, if possible. | protected VariableInput | xminxmaxyminymax The input boxes for the x- and y-value ranges. |
Constructor Summary | |
public | LimitControlPanel() Create a LimitControlPanel containing input boxes labeled
"xmin", "xmax", "ymin", "ymax" and a SET_LIMITS button. | public | LimitControlPanel(int buttonsToAdd, boolean useTwoColumnsIfPossible) Create a LimitControlPanel containing input boxes labeled
"xmin", "xmax", "ymin", "ymax" and whatever buttons are in the
set specified by the first parameter.
Parameters: buttonsToAdd - The set of buttons to be added to the panel. | public | LimitControlPanel(String xminName, String xmaxName, String yminName, String ymaxName, int buttonsToAdd, boolean useTwoColumnsIfPossible) Create a LimitControlPanel containing input boxes labeled
with the given names and containing whatever buttons are in the
set buttonsToAdd. |
Method Summary | |
public void | actionPerformed(ActionEvent evt) Handle a click on one of the standard buttons. | public Component | add(Component c) | public void | addButtons(int buttonSet) Add the buttons in buttonSet to the panel, if they are not
already there. | public void | addComponent(Component c) Add a component to the panel. | public void | addComponentPair(Component c1, Component c2) Add two components to the panel. | public void | addCoords(CoordinateRect coords) Add a CoordinateRect to be controlled by this LimitControlPanel. | public void | addCoords(DisplayCanvas canvas) Add the first CoordinateRect from the canvas to be controlled
by this LimitControlPanel. | public void | addRange(VariableInput v1, VariableInput v2) Add two VariableInputs to the panel. | public void | checkInput() Check the input boxes in this panel. | public Button | getButton(int buttonCode) Get a Button corresponding to one of the six button types defined by the constants
SET_LIMITS, EQUALIZE, ZOOM_IN, ZOOM_OUT, SAVE, and RESTORE in this class. | public ErrorReporter | getErrorReporter() Get the ErrorReporter that is used to report errors in the
user's input. | public double[] | getLimits() Get the values in the xmin, xmax, ymin, and ymax input boxes. | public Dimension | getPreferredSize() Compute the preferred size of this panel. | public long | getSerialNumber() Part of the Tieable interface, and not meant to be called directly. | public boolean | getUseTwoColumnsIfPossible() Get the value of the "useTwoColumnsIfPossible" property of this panel. | public void | notifyControllerOnChange(Controller c) Method required by CheckInput interface. | public void | paint(Graphics g) Draw the input box labels. | public void | processComponentEvent(ComponentEvent evt) Recompute component locations when the panel is resized. | public void | setErrorReporter(ErrorReporter rep) Set the ErrorReporter that is used to report errors in the
user's input. | public void | setLimits(double[] limits) Set the values in the xmin, xmax, ymin, and ymax input boxes. | public void | setUseTwoColumnsIfPossible(boolean two) Set to true if you want the components to be shown in
two columns (provided the panel is wide enough). | public void | sync(Tie t, Tieable newest) Part of the Tieable interface, and not meant to be called directly. |
ALL_BUTTONS | final public static int ALL_BUTTONS(Code) | | A constant that can be used in the addButton() method to add all possible buttons to the LimitControlPanel.
|
EQUALIZE | final public static int EQUALIZE(Code) | | A constant that can be used in the addButton() method to add a button to the LimitControlPanel.
This represents a button that will equalize the scales on the axes (of the first
CoordinateRect that was added to this panel).
|
RESTORE | final public static int RESTORE(Code) | | A constant that can be used in the addButton() method to add a button to the LimitControlPanel.
This represents a button that will restore previously saved coordinates.
The coords are those that were saved with the save button,
or if none were saved in that way, then the original
coordinates that the CoordinateRect had when it was created.
|
SAVE | final public static int SAVE(Code) | | A constant that can be used in the addButton() method to add a button to the LimitControlPanel.
This represents a button that will save the current limits, so they can be
restored later with the restore button.
|
SET_LIMITS | final public static int SET_LIMITS(Code) | | A constant that can be used in the addButton() method to add a button to the LimitControlPanel.
This represents a button that will set the limits using the values in the input boxes.
(This is also done when the user presses return in one of the boxes.)
|
ZOOM_IN | final public static int ZOOM_IN(Code) | | A constant that can be used in the addButton() method to add a button to the LimitControlPanel.
This represents a button that will zoom in on the center of the coordinate rect.
|
ZOOM_OUT | final public static int ZOOM_OUT(Code) | | A constant that can be used in the addButton() method to add a button to the LimitControlPanel.
This represents a button that will zoom out from the center of the coordinate rect.
|
buttons | protected int buttons(Code) | | Set of installed buttons.
|
coords | protected CoordinateRect coords(Code) | | The first CoordinateRect tied to this LimitControlPanel.
|
items | protected Vector items(Code) | | Vector of components and component pairs that have
been added to this panel, including at least the xmin, xmax, ymin, ymax
input boxes.
|
serialNumber | protected long serialNumber(Code) | | This is increased when the user changes the limits.
(The -1 will make this LimitControlPanel get its limits
from the first CoordinateRect that is added to it.)
This variable is used to implement syncronization of limits
with the limits on CoordinateRects.
|
syncWith | protected Tie syncWith(Code) | | A Tie holding this panel and the CoordinateRects that it controls.
|
twoColumn | protected boolean twoColumn(Code) | | Use two columns for display, if possible.
|
xminxmaxyminymax | protected VariableInput xminxmaxyminymax(Code) | | The input boxes for the x- and y-value ranges.
|
LimitControlPanel | public LimitControlPanel()(Code) | | Create a LimitControlPanel containing input boxes labeled
"xmin", "xmax", "ymin", "ymax" and a SET_LIMITS button. The
components are shown in a single column.
|
LimitControlPanel | public LimitControlPanel(int buttonsToAdd, boolean useTwoColumnsIfPossible)(Code) | | Create a LimitControlPanel containing input boxes labeled
"xmin", "xmax", "ymin", "ymax" and whatever buttons are in the
set specified by the first parameter.
Parameters: buttonsToAdd - The set of buttons to be added to the panel. Can consist of one ormore of the constants SET_LIMITS, EQUALIZE, ZOOM_IN, ZOOM_OUT, SAVE, and RESTORE,or'ed together. Parameters: useTwoColumnsIfPossible - If this is true, then the components in the panel willbe arranged into two columns instead of one (assuming that there is room). |
LimitControlPanel | public LimitControlPanel(String xminName, String xmaxName, String yminName, String ymaxName, int buttonsToAdd, boolean useTwoColumnsIfPossible)(Code) | | Create a LimitControlPanel containing input boxes labeled
with the given names and containing whatever buttons are in the
set buttonsToAdd. buttonsToAdd should be formed by or-ing together
constants such as SET_LIMITS from this class. The last parameter
specifies whether to show the components in two columns.
Parameters: xminName - Name to be used as a label for the xmin input box. Parameters: xmaxName - Name to be used as a label for the xmax input box. Parameters: yminName - Name to be used as a label for the ymin input box. Parameters: xmaxName - Name to be used as a label for the ymax input box. Parameters: buttonsToAdd - The set of buttons to be added to the panel. Can consist of one ormore of the constants SET_LIMITS, EQUALIZE, ZOOM_IN, ZOOM_OUT, SAVE, and RESTORE,or'ed together. Parameters: useTwoColumnsIfPossible - If this is true, then the components in the panel willbe arranged into two columns instead of one (assuming that there is room). |
actionPerformed | public void actionPerformed(ActionEvent evt)(Code) | | Handle a click on one of the standard buttons.
Not meant to be called directly.
|
add | public Component add(Component c)(Code) | | Redefine this method from the Component class to make it a synonym for addComponent(c);
|
addButtons | public void addButtons(int buttonSet)(Code) | | Add the buttons in buttonSet to the panel, if they are not
already there. buttonSet should be formed by or-ing
together some of the constants SET_LIMITS, ZOOM_IN, etc.
|
addComponent | public void addComponent(Component c)(Code) | | Add a component to the panel. If two-column format is used, it will
be shown on a line by itself. Note that the component shouldn't be too
wide, or it will make the Panel stretch. This component
is NOT checked for input errors. If it is an input object
or a computable, it should be added to a Controller. For an
input object, some Controller should be set up to be notified when
the value changes. (You have to do this by hand, even if you use JCMPanels!!)
|
addComponentPair | public void addComponentPair(Component c1, Component c2)(Code) | | Add two components to the panel. If two-column format is used, they will
be shown on the same row. Note that the components shouldn't be too
wide, or they will make the Panel stretch. These components
are NOT checked for input errors. If they are input objects
or computables, they should be added to another Controller. For an
input object, some Controller should be set up to be notified when
the value changes. (You have to do this by hand, even if you use JCMPanels!!)
|
addCoords | public void addCoords(CoordinateRect coords)(Code) | | Add a CoordinateRect to be controlled by this LimitControlPanel. When the user changes
the limits in this LimitControlPanel, the limits are also changed on the CoordinateRect
to match. If the limits on the CoordinateRect change for some other reason, then
the limits in the panel are changed to match. If multiple CoordinateRects are added,
the limits on all the CoordinateRects will be synchronized with each other and with
the limits in the panel.
|
addCoords | public void addCoords(DisplayCanvas canvas)(Code) | | Add the first CoordinateRect from the canvas to be controlled
by this LimitControlPanel. (Just calls addCoords(canvas.getCoordinateRect()).)
|
addRange | public void addRange(VariableInput v1, VariableInput v2)(Code) | | Add two VariableInputs to the panel. These ARE checked for input when
the user presses return or clicks the SET_LIMITS button.
Furthermore, it is checked that the value in the second input box is greater than
the value in the first, and an error is reported if it is not.
This method is used to add the xmin, xmax, ymin, and ymax
boxes. It could possibly be used to add tmin and tmax boxes
for the limits on the parameter of a parametric curve,
for example.
|
checkInput | public void checkInput()(Code) | | Check the input boxes in this panel. This is generally not meant to be
called from outside this class, except by a Controller.
|
getButton | public Button getButton(int buttonCode)(Code) | | Get a Button corresponding to one of the six button types defined by the constants
SET_LIMITS, EQUALIZE, ZOOM_IN, ZOOM_OUT, SAVE, and RESTORE in this class. The button
can be added to a different panel, but it will still affect this LimitControlPanel in
the usual way. It is possible to change the name of the button, and it will still
work correctly. Each call to this method creates a new button, even if multiple buttons
of the same type are created.
Parameters: buttonCode - one of the constants from this class (SET_LIMITS, EQUALIZE, etc.) specifyingone of the types of button for controlling limits. If the parameter is not one ofthese constants, and IllegalArgumentException will be thrown. |
getErrorReporter | public ErrorReporter getErrorReporter()(Code) | | Get the ErrorReporter that is used to report errors in the
user's input. Note that only the input boxes for
xmin, xmax, ymin, and ymax and any VariableInputs
added with the addRange() method are checked.
|
getLimits | public double[] getLimits()(Code) | | Get the values in the xmin, xmax, ymin, and ymax input boxes. Note that this can
throw a JCMError.
|
getPreferredSize | public Dimension getPreferredSize()(Code) | | Compute the preferred size of this panel.
Not meant to be called directly.
|
getSerialNumber | public long getSerialNumber()(Code) | | Part of the Tieable interface, and not meant to be called directly.
|
getUseTwoColumnsIfPossible | public boolean getUseTwoColumnsIfPossible()(Code) | | Get the value of the "useTwoColumnsIfPossible" property of this panel.
|
notifyControllerOnChange | public void notifyControllerOnChange(Controller c)(Code) | | Method required by CheckInput interface. In this class, it does nothing because
responses to inputs are handled by the LimitControlPanel itself.
|
paint | public void paint(Graphics g)(Code) | | Draw the input box labels.
Not meant to be called directly.
|
processComponentEvent | public void processComponentEvent(ComponentEvent evt)(Code) | | Recompute component locations when the panel is resized.
Not meant to be called directly.
|
setErrorReporter | public void setErrorReporter(ErrorReporter rep)(Code) | | Set the ErrorReporter that is used to report errors in the
user's input. Note that only the input boxes for
xmin, xmax, ymin, and ymax and any VariableInputs
added with the addRange() method are checked.
|
setLimits | public void setLimits(double[] limits)(Code) | | Set the values in the xmin, xmax, ymin, and ymax input boxes.
|
setUseTwoColumnsIfPossible | public void setUseTwoColumnsIfPossible(boolean two)(Code) | | Set to true if you want the components to be shown in
two columns (provided the panel is wide enough).
|
sync | public void sync(Tie t, Tieable newest)(Code) | | Part of the Tieable interface, and not meant to be called directly.
|
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)
|
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)
|
|
|