| java.lang.Object java.awt.Component java.awt.Container com.javujavu.javux.wings.WingComponent
All known Subclasses: com.javujavu.javux.wings.WingTextField, com.javujavu.javux.wings.WingCombo, com.javujavu.javux.wings.WingTree, com.javujavu.javux.wings.WingTabbedPane, com.javujavu.javux.wings.WingTextPane, com.javujavu.javux.wings.WingSplitPane, com.javujavu.javux.wings.WingRootPane, com.javujavu.javux.wings.WingMenu, com.javujavu.javux.wings.WingList, com.javujavu.javux.wings.WingPanel, com.javujavu.javux.wings.WingProgress, com.javujavu.javux.wings.WingScrollView, com.javujavu.javux.wings.WingSpinner, com.javujavu.javux.wings.WingTable, com.javujavu.javux.wings.WingScroll, com.javujavu.javux.wings.WingScrollPane, com.javujavu.javux.wings.WingLabel,
WingComponent | public class WingComponent extends Container implements WingConst(Code) | | The base class for all WingS components except top-level containers
(WingFrame, WingWindow, WingDialog and WingApplet ).
The WingComponent class provides:
- The base class for both standard and custom components
that use the WingS architecture.
- Highly customizable look based on hierarchical skin style sheets.
- Interactive keyboard shortcut handling.
- Thread and deadlock safe layout revalidation with
revalidateAndRepaint method.
- Posting events on event thread with
postOnEventThread method.
- An infrastructure for painting
that includes double buffering and support for item renderers.
This is one of the core WingS classes required by all the components
This class is thread safe.
|
Constructor Summary | |
public | WingComponent() Default WingComponent constructor. |
Method Summary | |
public void | addActionListener(ActionListener l) Adds the specified action listener to receive action events from
this component. | public void | addItemListener(ItemListener l) Adds the specified item listener to receive item events from
this component. | public void | addNotify() | public void | addShortcut(Shortcut s) Adds a keyboard shortcut to this component. | public void | addShortcuts(WingComponent source) Adds every component in the tree that implements
Shortcut to this component as a shortcut. | protected void | cancelPopup(WingComponent src) | protected static void | clrPopup(WingComponent popup) | protected void | dispatchEventOET(AWTEvent e) | protected boolean | dispatchEventsOET() | protected void | dispatchShortcuts(KeyEvent e) | protected void | doScrollRectToVisible(Rectangle r) | public static void | enablePopups(boolean enableLightweightPopups, boolean enableHeavyweightPopups) Enables/disables light and heavy weight popups for combo, menu, tooltip popups. | public Color | getBackground() | public String | getClipboardText() | public Font | getFont() | public Color | getForeground() | public Dimension | getMinimumSize() | public Frame | getParentFrame() | public Dimension | getPreferredSize() | public ItemRenderer | getRenderer() Returns the renderer used to display items in this component. | public WingRootPane | getRootPane() Returns the WingRootPane ancestor for this component. | public void | getScrollIncrements(Point unit, Point block) Sets scroll increments for this component. | public Style | getStyle() | public Object | getTooltipAt(int x, int y) Returns the object to be used as the tooltip.
By default this returns any object set using
setToolTip . | public Dimension | getViewOrSize() | public Dimension | getViewSize() Returns the size of WingScrollView containing this component or null
if this component is not contained in WingScrollPane . | protected Dimension | getViewSize(WingComponent child) | public WingFont | getWingFont() Gets the WingFont font of this component. | protected void | hideTooltip() | public boolean | imageUpdate(Image img, int infoflags, int x, int y, int w, int h) | public void | invalidate() | public boolean | isFocusTraversable() | public void | loadSkin() | public void | mouseWheelMoved(Object source, int wheelRotation) | public void | paint(Graphics g) | public void | paintBackground(Graphics g) Paints the component background. | public void | paintComponent(Graphics g) | public void | postOnEventThread(AWTEvent e) Posts an event on the event thread. | protected void | processEvent(AWTEvent e) | protected void | processKeyEvent(KeyEvent e) | protected void | processMouseEvent(MouseEvent e) | protected void | processMouseMotionEvent(MouseEvent e) | public void | removeActionListener(ActionListener l) Removes the specified action listener so that it no longer
receives action events from this component. | public void | removeItemListener(ItemListener l) Removes the specified item listener so that it no longer receives
item events from this component. | public void | removeShortcut(Shortcut s) Removes a keyboard shortcut from this component. | public void | removeShortcuts(WingComponent source) Removes every component in the tree that implements
Shortcut added to this component as a shortcut. | public void | repaintVisible() Repaints this component. | public boolean | repaintVisible(int x, int y, int width, int height) Repaints visible area of this component. | public void | revalidateAndRepaint() Provide thread and deadlock safe way to revalidate component layout. | public void | scrollRectToVisible(Rectangle r) Scrolls the view so that Rectangle within the view becomes visible. | public void | setClipboardText(String text) | public static void | setDebugDelay(int debugDelay) | public static void | setDoubleBuffering(boolean doubleBuffering) Enables/disables double buffering for all WingS components. | public void | setEnabled(boolean b) | protected static void | setPopup(WingComponent popup) | public void | setPreferredSize(Dimension prefSize) Sets the preferred size of this component. | public void | setRenderer(ItemRenderer renderer) Sets the renderer that paints items in this component. | public void | setStyleId(String styleId) Sets custom style ID. | public void | setTooltip(Object tooltip) Registers the tool tip for this component. | public void | setTopStyle(Style topStyle) Sets overriding at runtime style settings loaded from style sheets. | public void | setWingFocusable(boolean focusable) Sets the focusable state of this WingComponent to the specified value. | protected void | showTooltip(Point point) | public void | update(Graphics g) | protected void | updateShortcuts(WingComponent target, boolean add) | public static void | updateSkin(Container c) A skin change: ask each node in the tree
to loadSkin() -- that is, to initialize its
with the current skin. | protected void | validateTree() | public void | wingHierarchyChanged(boolean showing) | public void | wingPaint(Graphics g) Paints the component content. | protected void | wingProcessActionEvent(ActionEvent e) | protected void | wingProcessItemEvent(ItemEvent e) | protected void | wingProcessKeyEvent(KeyEvent e, WingComponent redirecting) | protected void | wingProcessMouseEvent(MouseEvent e) | public void | wingRequestFocusInWindow() | protected void | wingValidate() |
POET_EVENT | final public static int POET_EVENT(Code) | | |
WINGSKIN_VERSION | final public static int WINGSKIN_VERSION(Code) | | |
debugDelay | protected static int debugDelay(Code) | | |
defaultRenderer | protected static ItemRenderer defaultRenderer(Code) | | default item renderer used by all components without specified item renderer
|
doubleBuffering | protected static boolean doubleBuffering(Code) | | |
heavyPopups | protected static boolean heavyPopups(Code) | | |
lightPopups | protected static boolean lightPopups(Code) | | |
oetNoQueue | protected static boolean oetNoQueue(Code) | | |
wingFocusable | protected boolean wingFocusable(Code) | | |
wingPrefSizeSet | protected boolean wingPrefSizeSet(Code) | | |
wingValid | protected int wingValid(Code) | | |
WingComponent | public WingComponent()(Code) | | Default WingComponent constructor.
|
addActionListener | public void addActionListener(ActionListener l)(Code) | | Adds the specified action listener to receive action events from
this component. Action events occur when a user presses or releases
the mouse over a button, checkbox, menu item and so on.
In WingS action events are dispatched by the component posting the event
and then by its parents.
If l is null, no exception is thrown and no action is performed.
Parameters: l - the action listener See Also: WingComponent.wingProcessActionEvent(ActionEvent) |
addItemListener | public void addItemListener(ItemListener l)(Code) | | Adds the specified item listener to receive item events from
this component.
In WingS item events are dispatched by the component posting the event
and then by its parents.
If l is null , no exception is thrown and no action
is performed.
Parameters: l - the item listener See Also: WingComponent.wingProcessItemEvent(ItemEvent) |
addNotify | public void addNotify()(Code) | | |
addShortcut | public void addShortcut(Shortcut s)(Code) | | Adds a keyboard shortcut to this component.
Parameters: s - |
addShortcuts | public void addShortcuts(WingComponent source)(Code) | | Adds every component in the tree that implements
Shortcut to this component as a shortcut.
Parameters: source - |
dispatchEventsOET | protected boolean dispatchEventsOET()(Code) | | |
doScrollRectToVisible | protected void doScrollRectToVisible(Rectangle r)(Code) | |
This method acquire TreeLock
|
enablePopups | public static void enablePopups(boolean enableLightweightPopups, boolean enableHeavyweightPopups)(Code) | | Enables/disables light and heavy weight popups for combo, menu, tooltip popups.
Parameters: enableLightweightPopups - whether or not light weight popups are enabled Parameters: enableHeavyweightPopups - whether or not heavy weight popups are enabled |
getMinimumSize | public Dimension getMinimumSize()(Code) | |
This method acquire TreeLock
|
getPreferredSize | public Dimension getPreferredSize()(Code) | |
This method acquire TreeLock
|
getRootPane | public WingRootPane getRootPane()(Code) | | Returns the WingRootPane ancestor for this component.
the WingRootPane that contains this component,or null if no WingRootPane is found |
getScrollIncrements | public void getScrollIncrements(Point unit, Point block)(Code) | | Sets scroll increments for this component.
Called by WingScrollPane to obtain component scroll increments
Parameters: unit - unit increments Parameters: block - block increments |
getStyle | public Style getStyle()(Code) | | Returns the style representing current component state
current style representing component state |
getTooltipAt | public Object getTooltipAt(int x, int y)(Code) | | Returns the object to be used as the tooltip.
By default this returns any object set using
setToolTip . If a component provides
more extensive API to support differing tooltips at different locations,
this method should be overridden.
Parameters: x - Parameters: y - the object to be used as the tooltip |
getViewSize | public Dimension getViewSize()(Code) | | Returns the size of WingScrollView containing this component or null
if this component is not contained in WingScrollPane .
the size of WingScrollView containing this component or null |
getWingFont | public WingFont getWingFont()(Code) | | Gets the WingFont font of this component.
It's analogous to getFont()
the current component WingFont See Also: WingFont |
hideTooltip | protected void hideTooltip()(Code) | | Hides the tool tip
This method acquire TreeLock via invokeAndWait
|
imageUpdate | public boolean imageUpdate(Image img, int infoflags, int x, int y, int w, int h)(Code) | | |
invalidate | public void invalidate()(Code) | |
This method acquire TreeLock
|
isFocusTraversable | public boolean isFocusTraversable()(Code) | | |
loadSkin | public void loadSkin()(Code) | | Loads skin resources.
styles:
[optional styleID.]normal
[optional styleID.]disabled
See Also: Style See Also: WingSkin |
mouseWheelMoved | public void mouseWheelMoved(Object source, int wheelRotation)(Code) | | |
paintBackground | public void paintBackground(Graphics g)(Code) | | Paints the component background.
Uses current item renderer and style to paint the background.
Parameters: g - |
postOnEventThread | public void postOnEventThread(AWTEvent e)(Code) | | Posts an event on the event thread.
Parameters: e - an instance of java.awt.AWTEvent |
processMouseMotionEvent | protected void processMouseMotionEvent(MouseEvent e)(Code) | | |
removeActionListener | public void removeActionListener(ActionListener l)(Code) | | Removes the specified action listener so that it no longer
receives action events from this component.
Parameters: l - the action listener |
removeItemListener | public void removeItemListener(ItemListener l)(Code) | | Removes the specified item listener so that it no longer receives
item events from this component.
If l is null , no exception is thrown and no
action is performed.
Parameters: l - the item listener |
removeShortcut | public void removeShortcut(Shortcut s)(Code) | | Removes a keyboard shortcut from this component.
Parameters: s - |
removeShortcuts | public void removeShortcuts(WingComponent source)(Code) | | Removes every component in the tree that implements
Shortcut added to this component as a shortcut.
Parameters: source - |
repaintVisible | public void repaintVisible()(Code) | | Repaints this component.
|
repaintVisible | public boolean repaintVisible(int x, int y, int width, int height)(Code) | | Repaints visible area of this component.
|
revalidateAndRepaint | public void revalidateAndRepaint()(Code) | | Provide thread and deadlock safe way to revalidate component layout.
Calls repaint and then invalidate+validate on the painting thread
just before painting
deadlock and thread safe method,
does not acquire TreeLock
wingValid states
VALID
INVALID
REVALIDATE
REVALIDATE_REPAINT
VALIDATING
wingValid state transition diagram
VALID,VALIDATING > invalidate > INVALID
VALID,INVALID,VALIDATING > child.revalidatAndRepaint > REVALIDATE
VALID,INVALID,REVALIDATE,VALIDATING > revalidatAndRepaint > REVALIDATE_REPAINT
INVALID,REVALIDATE,REVALIDATE_REPAINT > wingInvalidateTree > VALIDATING
VALIDATING > validateTree > VALID
|
scrollRectToVisible | public void scrollRectToVisible(Rectangle r)(Code) | | Scrolls the view so that Rectangle within the view becomes visible.
This method acquire TreeLock
Parameters: r - |
setClipboardText | public void setClipboardText(String text)(Code) | | |
setDebugDelay | public static void setDebugDelay(int debugDelay)(Code) | | Sets debug delay time for debug purpose
Parameters: debugDelay - delay time |
setDoubleBuffering | public static void setDoubleBuffering(boolean doubleBuffering)(Code) | | Enables/disables double buffering for all WingS components.
Parameters: doubleBuffering - whether or not double buffering is enabled |
setEnabled | public void setEnabled(boolean b)(Code) | | |
setPreferredSize | public void setPreferredSize(Dimension prefSize)(Code) | | Sets the preferred size of this component.
If preferredSize is null , the component will
be asked for the preferred size.
Parameters: prefSize - The preferred size of the component |
setRenderer | public void setRenderer(ItemRenderer renderer)(Code) | | Sets the renderer that paints items in this component.
Parameters: renderer - the ItemRenderer of the component;use null to reset to default See Also: ItemRenderer See Also: DefaultItemRenderer |
setStyleId | public void setStyleId(String styleId)(Code) | | Sets custom style ID.
This method acquire TreeLock
Parameters: styleId - custom style ID; use null toclear custom style ID |
setTooltip | public void setTooltip(Object tooltip)(Code) | | Registers the tool tip for this component.
It can be an instance of WingComponent
or a label acceptable by the item renderer of this component.
Parameters: tooltip - the tool tip to display; if the value is null ,the tool tip is turned off for this component |
setTopStyle | public void setTopStyle(Style topStyle)(Code) | | Sets overriding at runtime style settings loaded from style sheets.
topStyle is merged with all component styles
matching following expression style.state & topStyle.state != 0
Parameters: topStyle - top style;use null to clear top style |
setWingFocusable | public void setWingFocusable(boolean focusable)(Code) | | Sets the focusable state of this WingComponent to the specified value. This
value overrides the Component default focusability.
Parameters: focusable - indicates whether this Component is focusable |
showTooltip | protected void showTooltip(Point point)(Code) | | Shows the tool tip at the specified location
This method acquire TreeLock
Parameters: point - location of the tool tip |
updateSkin | public static void updateSkin(Container c)(Code) | | A skin change: ask each node in the tree
to loadSkin() -- that is, to initialize its
with the current skin.
This method acquire TreeLock
Parameters: c - container being at the top of the tree |
validateTree | protected void validateTree()(Code) | | |
wingHierarchyChanged | public void wingHierarchyChanged(boolean showing)(Code) | | |
wingPaint | public void wingPaint(Graphics g)(Code) | | Paints the component content.
Override this method instead of paint to paint
component content.
Parameters: g - |
wingProcessActionEvent | protected void wingProcessActionEvent(ActionEvent e)(Code) | | Processes action events occurring on this component
by dispatching them to any registered
ActionListener objects
and then invokes getParent().wingProcessActionEvent(e)
if the parent of this component is instance of WingComponent
Parameters: e - the action event |
wingProcessItemEvent | protected void wingProcessItemEvent(ItemEvent e)(Code) | | Processes item events occurring on this component
by dispatching them to any registered
ItemListener objects
and then invokes getParent().wingProcessItemEvent(e)
if the parent of this component is instance of WingComponent
Parameters: e - the action event |
wingProcessMouseEvent | protected void wingProcessMouseEvent(MouseEvent e)(Code) | | receives both MouseMotion and Mouse events
Parameters: e - |
wingRequestFocusInWindow | public void wingRequestFocusInWindow()(Code) | | |
wingValidate | protected void wingValidate()(Code) | | validate now if invalidated with revalidateAndRepaint
This method acquire TreeLock
Synchronization with TreeLock should be provided by the method that calls this one
|
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)
|
|
|