| java.lang.Object java.awt.Component java.awt.Container javax.swing.JComponent javax.swing.JInternalFrame
JInternalFrame | public class JInternalFrame extends JComponent implements Accessible,WindowConstants,RootPaneContainer(Code) | |
JInternalFrame
Implementation Notes:
- The
serialVersionUID fields are explicitly declared as a performance
optimization, not as a guarantee of serialization compatibility.
|
Inner Class :protected class AccessibleJInternalFrame extends AccessibleJComponent implements AccessibleValue | |
Constructor Summary | |
public | JInternalFrame() Constructs a non-resizable, non-closable, non-maximizable,
non-iconifiable internal frame with no title. | public | JInternalFrame(String title) Constructs a non-resizable, non-closable, non-maximizable,
non-iconifiable internal frame with the specified title. | public | JInternalFrame(String title, boolean resizable) Constructs a non-closable, non-maximizable, non-iconifiable internal
frame with the specified title and resizability. | public | JInternalFrame(String title, boolean resizable, boolean closable) Constructs a non-maximizable, non-iconifiable internal frame
with the specified title, resizability and closability. | public | JInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable) Constructs a non-iconifiable internal frame with the specified title,
resizability, closability and maximizability. | public | JInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable, boolean iconifiable) Constructs an internal frame with the specified title,
resizability, closability, maximizability and iconifiability. |
Method Summary | |
protected void | addImpl(Component comp, Object constraints, int index) Children may not be added directly to the internal frame by default. | public void | addInternalFrameListener(InternalFrameListener l) Adds the internal frame listener. | protected JRootPane | createRootPane() Called by the constructors to create the default rootPane
property. | public void | dispose() Makes the internal frame invisible, unselected and closed. | public void | doDefaultCloseAction() Fires an INTERNAL_FRAME_CLOSING event and then performs
the action defined by the default close operation. | protected void | fireInternalFrameEvent(int id) Fires the internal frame event. | public AccessibleContext | getAccessibleContext() Returns the accessible context for the internal frame. | public Container | getContentPane() Returns the contentPane property. | public int | getDefaultCloseOperation() Returns defaultCloseOperation value. | public JDesktopIcon | getDesktopIcon() Returns the desktop icon used when the internal frame is iconified. | public JDesktopPane | getDesktopPane() Returns the desktop pane that contains the internal frame
or desktoIcon . | final public Container | getFocusCycleRootAncestor() Always returns null because JInternalFrame is always
a focus cycle root. | public Component | getFocusOwner() Returns the component that currently has the focus. | public Icon | getFrameIcon() Returns the icon displayed in the title bar of the internal frame. | public Component | getGlassPane() Returns glassPane property. | public InternalFrameListener[] | getInternalFrameListeners() Returns all registered internal frame listeners. | public JMenuBar | getJMenuBar() Returns the menu bar for the frame. | public int | getLayer() Returns the layer attribute of the internal frame. | public JLayeredPane | getLayeredPane() Returns layeredPane property. | public JMenuBar | getMenuBar() | public Component | getMostRecentFocusOwner() Returns the component that will receive the focus when the
internal frame is selected. | public Rectangle | getNormalBounds() Returns the normal bounds of this internal frame. | public JRootPane | getRootPane() Get rootPane property. | public String | getTitle() Returns the title of the frame. | public InternalFrameUI | getUI() Returns the UI object for this component. | public String | getUIClassID() Returns the name of the L&F class that renders this component. | final public String | getWarningString() Gets the warning string that is displayed with this internal frame. | public void | hide() | public boolean | isClosable() Get the closable property value. | public boolean | isClosed() Returns true if the internal frame is closed, otherwise
returns false . | final public boolean | isFocusCycleRoot() Always returns true because JInternalFrame is always
a focus cycle root. | public boolean | isIcon() Returns whether the frame is currently iconified. | public boolean | isIconifiable() Get the iconable property value. | public boolean | isMaximizable() Get the maximizable property value. | public boolean | isMaximum() Returns whether the internal frame is currently maximized. | public boolean | isResizable() Get the resizable property value. | protected boolean | isRootPaneCheckingEnabled() Returns rootPaneCheckingEnabled value. | public boolean | isSelected() Returns whether the internal frame is selected. | public void | moveToBack() | public void | moveToFront() | public void | pack() Subcomponents are layed out to their preferred sizes. | protected void | paintComponent(Graphics g) Is overridden to allow optimized painting when the internal
frame is being dragged. | protected String | paramString() Returns string representation of this frame. | public void | remove(Component comp) | public void | removeInternalFrameListener(InternalFrameListener l) Removes the internal frame listener. | public void | restoreSubcomponentFocus() Restores focus to the last subcomponent that had focus. | public void | setBounds(int x, int y, int w, int h) | public void | setClosable(boolean b) Sets the closable property. | public void | setClosed(boolean b) Closes the internal frame if b is true . | public void | setContentPane(Container contentPane) Sets contentPane property. | public void | setDefaultCloseOperation(int operation) Sets the defaultCloseOperation property. | public void | setDesktopIcon(JDesktopIcon icon) Sets the desktop icon to be used when the internal frame is iconified. | final public void | setFocusCycleRoot(boolean b) Does nothing because JInternalFrame must be always
a focus cycle root. | public void | setFrameIcon(Icon icon) Sets the icon to be displayed in the title bar of the internal frame. | public void | setGlassPane(Component glassPane) Set glassPane property. | public void | setIcon(boolean b) Iconifies or deiconifies the internal frame, if the L&F supports iconification. | public void | setIconifiable(boolean b) Sets the iconable property. | public void | setJMenuBar(JMenuBar menuBar) Sets the menu bar for the frame. | public void | setLayer(Integer layer) Sets the layer attribute of the internal frame. | public void | setLayer(int layer) Sets the layer attribute of the internal frame. | public void | setLayeredPane(JLayeredPane layeredPane) Sets layeredPane property. | public void | setLayout(LayoutManager layout) | public void | setMaximizable(boolean b) Sets the maximizable property. | public void | setMaximum(boolean b) Maximizes or restores the internal frame. | public void | setMenuBar(JMenuBar menuBar) | public void | setNormalBounds(Rectangle rect) Sets normal bounds of this internal frame, the bounds that this frame
will be restored to from its maximized state. | public void | setResizable(boolean b) Sets the resizable property. | protected void | setRootPane(JRootPane root) Set rootPane property. | protected void | setRootPaneCheckingEnabled(boolean enabled) Sets rootPaneCheckingEnabled property. | public void | setSelected(boolean b) Selects or deselects the internal frame. | public void | setTitle(String title) Sets the title of the frame. | public void | setUI(InternalFrameUI ui) Sets the UI object for this component. | public void | show() If the internal frame is not visible, moves it to the front,
makes it visible, and attempts to select it. | public void | toBack() Moves the internal frame to the back. | public void | toFront() Moves the internal frame to the front. | public void | updateUI() Updates UI's for both JInternalFrame
and JDesktopIcon . |
CONTENT_PANE_PROPERTY | final public static String CONTENT_PANE_PROPERTY(Code) | | The name of the bound property.
|
FRAME_ICON_PROPERTY | final public static String FRAME_ICON_PROPERTY(Code) | | The name of the bound property.
|
GLASS_PANE_PROPERTY | final public static String GLASS_PANE_PROPERTY(Code) | | The name of the bound property.
|
IS_CLOSED_PROPERTY | final public static String IS_CLOSED_PROPERTY(Code) | | The name of the constrained property which indicates whether
the internal frame is closed.
|
IS_ICON_PROPERTY | final public static String IS_ICON_PROPERTY(Code) | | The name of the constrained property which indicates whether
the internal frame is iconified.
|
IS_MAXIMUM_PROPERTY | final public static String IS_MAXIMUM_PROPERTY(Code) | | The name of the constrained property which indicates whether
the internal frame is maximized.
|
IS_SELECTED_PROPERTY | final public static String IS_SELECTED_PROPERTY(Code) | | The name of the constrained property which indicates whether
the internal frame is selected.
|
LAYERED_PANE_PROPERTY | final public static String LAYERED_PANE_PROPERTY(Code) | | The name of the bound property.
|
MENU_BAR_PROPERTY | final public static String MENU_BAR_PROPERTY(Code) | | The name of the bound property.
|
ROOT_PANE_PROPERTY | final public static String ROOT_PANE_PROPERTY(Code) | | The name of the bound property.
|
TITLE_PROPERTY | final public static String TITLE_PROPERTY(Code) | | The name of the bound property.
|
closable | protected boolean closable(Code) | | The frame can be closed.
|
desktopIcon | protected JDesktopIcon desktopIcon(Code) | | The icon that is displayed when the frame is iconified.
|
frameIcon | protected Icon frameIcon(Code) | | The icon shown in the top-left corner of the frame.
|
iconable | protected boolean iconable(Code) | | The frame can be icinified.
|
isClosed | protected boolean isClosed(Code) | | The frame is closed.
|
isIcon | protected boolean isIcon(Code) | | The frame is iconified.
|
isMaximum | protected boolean isMaximum(Code) | | The frame is maximized.
|
isSelected | protected boolean isSelected(Code) | | The frame is selected now.
|
maximizable | protected boolean maximizable(Code) | | The frame can be maximized.
|
resizable | protected boolean resizable(Code) | | The frame is resizable.
|
rootPane | protected JRootPane rootPane(Code) | | JRootPane containter of the internal frame.
|
rootPaneCheckingEnabled | protected boolean rootPaneCheckingEnabled(Code) | | |
JInternalFrame | public JInternalFrame()(Code) | | Constructs a non-resizable, non-closable, non-maximizable,
non-iconifiable internal frame with no title.
|
JInternalFrame | public JInternalFrame(String title)(Code) | | Constructs a non-resizable, non-closable, non-maximizable,
non-iconifiable internal frame with the specified title.
Parameters: title - the title of the internal frame |
JInternalFrame | public JInternalFrame(String title, boolean resizable)(Code) | | Constructs a non-closable, non-maximizable, non-iconifiable internal
frame with the specified title and resizability.
Parameters: title - the title of the internal frame Parameters: resizable - |
JInternalFrame | public JInternalFrame(String title, boolean resizable, boolean closable)(Code) | | Constructs a non-maximizable, non-iconifiable internal frame
with the specified title, resizability and closability.
Parameters: title - the title of the internal frame Parameters: resizable - Parameters: closable - |
JInternalFrame | public JInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable)(Code) | | Constructs a non-iconifiable internal frame with the specified title,
resizability, closability and maximizability.
Parameters: title - the title of the internal frame Parameters: resizable - Parameters: closable - Parameters: maximizable - |
JInternalFrame | public JInternalFrame(String title, boolean resizable, boolean closable, boolean maximizable, boolean iconifiable)(Code) | | Constructs an internal frame with the specified title,
resizability, closability, maximizability and iconifiability.
Parameters: title - the title of the internal frame Parameters: resizable - Parameters: closable - Parameters: maximizable - Parameters: iconifiable - |
addImpl | protected void addImpl(Component comp, Object constraints, int index)(Code) | | Children may not be added directly to the internal frame by default.
They must be added to its contentPane .
Parameters: comp - - the component to be added Parameters: constraints - - the constraints to be kept Parameters: index - - the index |
addInternalFrameListener | public void addInternalFrameListener(InternalFrameListener l)(Code) | | Adds the internal frame listener.
Parameters: l - internal frame listener to add |
createRootPane | protected JRootPane createRootPane()(Code) | | Called by the constructors to create the default rootPane
property.
default rootPane |
dispose | public void dispose()(Code) | | Makes the internal frame invisible, unselected and closed. If
the internal fram was not already closed, INTERNAL_FRAME_CLOSED
event is fired.
|
doDefaultCloseAction | public void doDefaultCloseAction()(Code) | | Fires an INTERNAL_FRAME_CLOSING event and then performs
the action defined by the default close operation.
|
fireInternalFrameEvent | protected void fireInternalFrameEvent(int id)(Code) | | Fires the internal frame event.
Parameters: id - identifier of the event to fire |
getAccessibleContext | public AccessibleContext getAccessibleContext()(Code) | | Returns the accessible context for the internal frame.
the accessible context for the internal frame |
getContentPane | public Container getContentPane()(Code) | | Returns the contentPane property.
the contentPane property |
getDefaultCloseOperation | public int getDefaultCloseOperation()(Code) | | Returns defaultCloseOperation value.
the defaultCloseOperation value |
getDesktopIcon | public JDesktopIcon getDesktopIcon()(Code) | | Returns the desktop icon used when the internal frame is iconified.
the desktop icon used when the internal frame is iconified |
getDesktopPane | public JDesktopPane getDesktopPane()(Code) | | Returns the desktop pane that contains the internal frame
or desktoIcon .
desktop pane that contains the internal frame ordesktoIcon |
getFocusCycleRootAncestor | final public Container getFocusCycleRootAncestor()(Code) | | Always returns null because JInternalFrame is always
a focus cycle root.
null |
getFocusOwner | public Component getFocusOwner()(Code) | | Returns the component that currently has the focus.
the component that currently has the focus, if the internalframe is selected; otherwise returns null |
getFrameIcon | public Icon getFrameIcon()(Code) | | Returns the icon displayed in the title bar of the internal frame.
the icon displayed in the title bar of the internal frame |
getGlassPane | public Component getGlassPane()(Code) | | Returns glassPane property.
glassPane property |
getInternalFrameListeners | public InternalFrameListener[] getInternalFrameListeners()(Code) | | Returns all registered internal frame listeners.
all registered internal frame listeners |
getJMenuBar | public JMenuBar getJMenuBar()(Code) | | Returns the menu bar for the frame.
the menu bar for the frame |
getLayer | public int getLayer()(Code) | | Returns the layer attribute of the internal frame.
the layer attribute of the internal frame |
getLayeredPane | public JLayeredPane getLayeredPane()(Code) | | Returns layeredPane property.
layeredPane property |
getMostRecentFocusOwner | public Component getMostRecentFocusOwner()(Code) | | Returns the component that will receive the focus when the
internal frame is selected.
the component that will receive the focus when theinternal frame is selected |
getNormalBounds | public Rectangle getNormalBounds()(Code) | | Returns the normal bounds of this internal frame.
the normal bounds of this internal frame |
getRootPane | public JRootPane getRootPane()(Code) | | Get rootPane property.
rootPane property |
getTitle | public String getTitle()(Code) | | Returns the title of the frame.
the title of the frame |
getUI | public InternalFrameUI getUI()(Code) | | Returns the UI object for this component.
UI object for this component |
getUIClassID | public String getUIClassID()(Code) | | Returns the name of the L&F class that renders this component.
the string "InternalFrameUI" |
getWarningString | final public String getWarningString()(Code) | | Gets the warning string that is displayed with this internal frame.
Since internal frame is always fully contained within a window, this
method always returns null .
null |
isClosable | public boolean isClosable()(Code) | | Get the closable property value.
the closable property value |
isClosed | public boolean isClosed()(Code) | | Returns true if the internal frame is closed, otherwise
returns false .
true if the internal frame is closed, otherwisereturns false |
isFocusCycleRoot | final public boolean isFocusCycleRoot()(Code) | | Always returns true because JInternalFrame is always
a focus cycle root.
true |
isIcon | public boolean isIcon()(Code) | | Returns whether the frame is currently iconified.
whether the frame is currently iconified |
isIconifiable | public boolean isIconifiable()(Code) | | Get the iconable property value.
the iconable property value |
isMaximizable | public boolean isMaximizable()(Code) | | Get the maximizable property value.
the maximizable property value |
isMaximum | public boolean isMaximum()(Code) | | Returns whether the internal frame is currently maximized.
whether the internal frame is currently maximized |
isResizable | public boolean isResizable()(Code) | | Get the resizable property value.
the resizable property value |
isRootPaneCheckingEnabled | protected boolean isRootPaneCheckingEnabled()(Code) | | Returns rootPaneCheckingEnabled value.
the value of rootPaneCheckingEnabled |
isSelected | public boolean isSelected()(Code) | | Returns whether the internal frame is selected.
whether the internal frame is selected |
moveToBack | public void moveToBack()(Code) | | Moves the internal frame to the position -1 if its parent is
JLayeredPane
|
moveToFront | public void moveToFront()(Code) | | Moves the internal frame to the position 0 if its parent is
JLayeredPane
|
pack | public void pack()(Code) | | Subcomponents are layed out to their preferred sizes.
|
paintComponent | protected void paintComponent(Graphics g)(Code) | | Is overridden to allow optimized painting when the internal
frame is being dragged.
Parameters: g - the Graphics object to paint |
paramString | protected String paramString()(Code) | | Returns string representation of this frame.
string representation of this frame |
removeInternalFrameListener | public void removeInternalFrameListener(InternalFrameListener l)(Code) | | Removes the internal frame listener.
Parameters: l - internal frame listener to remove |
restoreSubcomponentFocus | public void restoreSubcomponentFocus()(Code) | | Restores focus to the last subcomponent that had focus.
|
setBounds | public void setBounds(int x, int y, int w, int h)(Code) | | |
setClosable | public void setClosable(boolean b)(Code) | | Sets the closable property.
Parameters: b - new value for the closable property |
setContentPane | public void setContentPane(Container contentPane)(Code) | | Sets contentPane property. This is a bound property.
Parameters: contentPane - the new contentPane property value |
setDefaultCloseOperation | public void setDefaultCloseOperation(int operation)(Code) | | Sets the defaultCloseOperation property.
Parameters: operation - the new defaultCloseOperation value |
setDesktopIcon | public void setDesktopIcon(JDesktopIcon icon)(Code) | | Sets the desktop icon to be used when the internal frame is iconified.
Parameters: icon - the desktop icon to be used when the internal frame isiconified |
setFocusCycleRoot | final public void setFocusCycleRoot(boolean b)(Code) | | Does nothing because JInternalFrame must be always
a focus cycle root.
Parameters: b - the value is ignored |
setFrameIcon | public void setFrameIcon(Icon icon)(Code) | | Sets the icon to be displayed in the title bar of the internal frame.
Parameters: icon - the icon to be displayed in the title bar of the internalframe |
setGlassPane | public void setGlassPane(Component glassPane)(Code) | | Set glassPane property. This is a bound property.
Parameters: glassPane - the new glassPane property value |
setIcon | public void setIcon(boolean b) throws PropertyVetoException(Code) | | Iconifies or deiconifies the internal frame, if the L&F supports iconification.
If the internal frame state is iconified, this method fires an
INTERNAL_FRAME_ICONIFIED event.
If the internal frame is deiconified, an INTERNAL_FRAME_DEICONIFIED
event is fired.
Parameters: b - shows whether iconify or deiconify the internal frame throws: PropertyVetoException - if the attempt to set the property is vetoed |
setIconifiable | public void setIconifiable(boolean b)(Code) | | Sets the iconable property.
Parameters: b - new value for the iconable property |
setJMenuBar | public void setJMenuBar(JMenuBar menuBar)(Code) | | Sets the menu bar for the frame.
Parameters: menuBar - the menu bar to be placed in the frame |
setLayer | public void setLayer(Integer layer)(Code) | | Sets the layer attribute of the internal frame.
Parameters: layer - the value of layer attribute to be set |
setLayer | public void setLayer(int layer)(Code) | | Sets the layer attribute of the internal frame. The method
setLayer(Integer) should be used for layer values
predefined in JLayeredPane .
Parameters: layer - the value of layer attribute to be set |
setLayeredPane | public void setLayeredPane(JLayeredPane layeredPane)(Code) | | Sets layeredPane property. This is a bound property.
Parameters: layeredPane - the new layeredPane property value |
setMaximizable | public void setMaximizable(boolean b)(Code) | | Sets the maximizable property.
Parameters: b - the new value for the maximizable property |
setNormalBounds | public void setNormalBounds(Rectangle rect)(Code) | | Sets normal bounds of this internal frame, the bounds that this frame
will be restored to from its maximized state.
Parameters: rect - - normal bounds value |
setResizable | public void setResizable(boolean b)(Code) | | Sets the resizable property.
Parameters: b - new value for the resizable property |
setRootPane | protected void setRootPane(JRootPane root)(Code) | | Set rootPane property.
Parameters: root - the new rootPane property value |
setRootPaneCheckingEnabled | protected void setRootPaneCheckingEnabled(boolean enabled)(Code) | | Sets rootPaneCheckingEnabled property.
Parameters: enabled - the new rootPaneCheckingEnabled value |
setSelected | public void setSelected(boolean b) throws PropertyVetoException(Code) | | Selects or deselects the internal frame. If the internal frame is selected,
InternalFrameEvent.INTERNAL_FRAME_ACTIVATED event is fired.
If the internal frame is deselected,
InternalFrameEvent.INTERNAL_FRAME_DEACTIVATED event is fired.
Parameters: b - shows whether select or deselect the internal frame throws: PropertyVetoException - if the attempt to set the property is vetoed |
setTitle | public void setTitle(String title)(Code) | | Sets the title of the frame.
title can be null .
This is a bound property.
Parameters: title - the title of the frame to be set |
setUI | public void setUI(InternalFrameUI ui)(Code) | | Sets the UI object for this component.
Parameters: ui - the UI object to set |
show | public void show()(Code) | | If the internal frame is not visible, moves it to the front,
makes it visible, and attempts to select it. If the internal frame
is shown the first time, INTERNAL_FRAME_OPENED event
is fired. The method does nothing if the internal frame is already
visible.
|
toBack | public void toBack()(Code) | | Moves the internal frame to the back.
|
toFront | public void toFront()(Code) | | Moves the internal frame to the front.
|
updateUI | public void updateUI()(Code) | | Updates UI's for both JInternalFrame
and JDesktopIcon .
|
Methods inherited from javax.swing.JComponent | public void addAncestorListener(AncestorListener ancestorListener)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public synchronized void addVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc) final void componentInputMapChanged(ComponentInputMap map)(Code)(Java Doc) public void computeVisibleRect(Rectangle rect)(Code)(Java Doc) public boolean contains(int x, int y)(Code)(Java Doc) public JToolTip createToolTip()(Code)(Java Doc) public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue)(Code)(Java Doc) public void firePropertyChange(String propertyName, int oldValue, int newValue)(Code)(Java Doc) protected void fireVetoableChange(String property, Object oldValue, Object newValue) throws PropertyVetoException(Code)(Java Doc) public ActionListener getActionForKeyStroke(KeyStroke keyStroke)(Code)(Java Doc) final public ActionMap getActionMap()(Code)(Java Doc) final ActionMap getActionMap(boolean forceCreate)(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public AncestorListener[] getAncestorListeners()(Code)(Java Doc) public boolean getAutoscrolls()(Code)(Java Doc) public Border getBorder()(Code)(Java Doc) public Rectangle getBounds(Rectangle bounds)(Code)(Java Doc) final public Object getClientProperty(Object key)(Code)(Java Doc) protected Graphics getComponentGraphics(Graphics g)(Code)(Java Doc) public JPopupMenu getComponentPopupMenu()(Code)(Java Doc) public int getConditionForKeyStroke(KeyStroke keyStroke)(Code)(Java Doc) public int getDebugGraphicsOptions()(Code)(Java Doc) public static Locale getDefaultLocale()(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public boolean getInheritsPopupMenu()(Code)(Java Doc) final public InputMap getInputMap(int condition)(Code)(Java Doc) final public InputMap getInputMap()(Code)(Java Doc) final InputMap getInputMap(int condition, boolean forceCreate)(Code)(Java Doc) public InputVerifier getInputVerifier()(Code)(Java Doc) public Insets getInsets()(Code)(Java Doc) public Insets getInsets(Insets insets)(Code)(Java Doc) public T[] getListeners(Class<T> listenersClass)(Code)(Java Doc) public Point getLocation(Point extLocation)(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public Component getNextFocusableComponent()(Code)(Java Doc) public Point getPopupLocation(MouseEvent event)(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public KeyStroke[] getRegisteredKeyStrokes()(Code)(Java Doc) public JRootPane getRootPane()(Code)(Java Doc) public Dimension getSize(Dimension extSize)(Code)(Java Doc) public Point getToolTipLocation(MouseEvent event)(Code)(Java Doc) public String getToolTipText()(Code)(Java Doc) public String getToolTipText(MouseEvent event)(Code)(Java Doc) public Container getTopLevelAncestor()(Code)(Java Doc) public TransferHandler getTransferHandler()(Code)(Java Doc) public String getUIClassID()(Code)(Java Doc) public boolean getVerifyInputWhenFocusTarget()(Code)(Java Doc) public synchronized VetoableChangeListener[] getVetoableChangeListeners()(Code)(Java Doc) public Rectangle getVisibleRect()(Code)(Java Doc) public void grabFocus()(Code)(Java Doc) boolean hasListener(Class<T> listenerType, EventListener l)(Code)(Java Doc) boolean insideDoubleBuffering()(Code)(Java Doc) public boolean isDoubleBuffered()(Code)(Java Doc) public static boolean isLightweightComponent(Component component)(Code)(Java Doc) public boolean isManagingFocus()(Code)(Java Doc) public boolean isOpaque()(Code)(Java Doc) public boolean isOptimizedDrawingEnabled()(Code)(Java Doc) public boolean isPaintingTile()(Code)(Java Doc) public boolean isRequestFocusEnabled()(Code)(Java Doc) public boolean isValidateRoot()(Code)(Java Doc) public void paint(Graphics graphics)(Code)(Java Doc) protected void paintBorder(Graphics graphics)(Code)(Java Doc) protected void paintChildren(Graphics graphics)(Code)(Java Doc) protected void paintComponent(Graphics graphics)(Code)(Java Doc) void paintDoubleBuffered(Graphics g)(Code)(Java Doc) public void paintImmediately(Rectangle rect)(Code)(Java Doc) public void paintImmediately(int x, int y, int width, int height)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printAll(Graphics g)(Code)(Java Doc) protected void printBorder(Graphics g)(Code)(Java Doc) protected void printChildren(Graphics g)(Code)(Java Doc) protected void printComponent(Graphics g)(Code)(Java Doc) protected void processComponentKeyEvent(KeyEvent event)(Code)(Java Doc) protected boolean processKeyBinding(KeyStroke keyStroke, KeyEvent keyEvent, int condition, boolean pressed)(Code)(Java Doc) static boolean processKeyBindings(KeyEvent event, Component source)(Code)(Java Doc) protected void processKeyEvent(KeyEvent event)(Code)(Java Doc) final public void putClientProperty(Object key, Object value)(Code)(Java Doc) public void registerKeyboardAction(ActionListener action, String command, KeyStroke keyStroke, int condition)(Code)(Java Doc) public void registerKeyboardAction(ActionListener action, KeyStroke keyStroke, int condition)(Code)(Java Doc) public void removeAncestorListener(AncestorListener ancestorListener)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public synchronized void removeVetoableChangeListener(VetoableChangeListener listener)(Code)(Java Doc) public void repaint(Rectangle rect)(Code)(Java Doc) public void repaint(long tm, int x, int y, int width, int height)(Code)(Java Doc) public boolean requestDefaultFocus()(Code)(Java Doc) public void requestFocus()(Code)(Java Doc) public boolean requestFocus(boolean temporary)(Code)(Java Doc) public boolean requestFocusInWindow()(Code)(Java Doc) protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc) public void resetKeyboardActions()(Code)(Java Doc) public void revalidate()(Code)(Java Doc) public void scrollRectToVisible(Rectangle rect)(Code)(Java Doc) final public void setActionMap(ActionMap newActionMap)(Code)(Java Doc) public void setAlignmentX(float alignment)(Code)(Java Doc) public void setAlignmentY(float alignment)(Code)(Java Doc) public void setAutoscrolls(boolean scrolls)(Code)(Java Doc) public void setBorder(Border newBorder)(Code)(Java Doc) public void setComponentPopupMenu(JPopupMenu popup)(Code)(Java Doc) public void setDebugGraphicsOptions(int newDebugGraphicsOptions)(Code)(Java Doc) public static void setDefaultLocale(Locale locale)(Code)(Java Doc) public void setDoubleBuffered(boolean flag)(Code)(Java Doc) public void setEnabled(boolean enabled)(Code)(Java Doc) public void setInheritsPopupMenu(boolean value)(Code)(Java Doc) final public void setInputMap(int condition, InputMap map)(Code)(Java Doc) public void setInputVerifier(InputVerifier verifier)(Code)(Java Doc) public void setNextFocusableComponent(Component component)(Code)(Java Doc) public void setOpaque(boolean opaque)(Code)(Java Doc) public void setRequestFocusEnabled(boolean enabled)(Code)(Java Doc) public void setToolTipText(String text)(Code)(Java Doc) public void setTransferHandler(TransferHandler newHandler)(Code)(Java Doc) protected void setUI(ComponentUI newUI)(Code)(Java Doc) public void setVerifyInputWhenFocusTarget(boolean verifyInput)(Code)(Java Doc) public void unregisterKeyboardAction(KeyStroke keyStroke)(Code)(Java Doc) public void update(Graphics graphics)(Code)(Java Doc) public void updateUI()(Code)(Java Doc)
|
Methods inherited from java.awt.Container | public Component add(Component comp)(Code)(Java Doc) public Component add(String name, Component comp)(Code)(Java Doc) public Component add(Component comp, int index)(Code)(Java Doc) public void add(Component comp, Object constraints)(Code)(Java Doc) public void add(Component comp, Object constraints, int index)(Code)(Java Doc) public synchronized void addContainerListener(ContainerListener l)(Code)(Java Doc) protected void addImpl(Component comp, Object constraints, int index)(Code)(Java Doc) public void addNotify()(Code)(Java Doc) public void addPropertyChangeListener(PropertyChangeListener listener)(Code)(Java Doc) public void addPropertyChangeListener(String propertyName, PropertyChangeListener listener)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation o)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) public int countComponents()(Code)(Java Doc) public void deliverEvent(Event e)(Code)(Java Doc) public void doLayout()(Code)(Java Doc) public Component findComponentAt(int x, int y)(Code)(Java Doc) public Component findComponentAt(Point p)(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) public Component getComponent(int n)(Code)(Java Doc) public Component getComponentAt(int x, int y)(Code)(Java Doc) public Component getComponentAt(Point p)(Code)(Java Doc) public int getComponentCount()(Code)(Java Doc) public int getComponentZOrder(Component comp)(Code)(Java Doc) public Component[] getComponents()(Code)(Java Doc) public synchronized ContainerListener[] getContainerListeners()(Code)(Java Doc) public Set<AWTKeyStroke> getFocusTraversalKeys(int id)(Code)(Java Doc) public FocusTraversalPolicy getFocusTraversalPolicy()(Code)(Java Doc) public Insets getInsets()(Code)(Java Doc) public LayoutManager getLayout()(Code)(Java Doc) public T[] getListeners(Class<T> listenerType)(Code)(Java Doc) public Dimension getMaximumSize()(Code)(Java Doc) public Dimension getMinimumSize()(Code)(Java Doc) public Point getMousePosition(boolean allowChildren) throws HeadlessException(Code)(Java Doc) public Dimension getPreferredSize()(Code)(Java Doc) public Insets insets()(Code)(Java Doc) public void invalidate()(Code)(Java Doc) public boolean isAncestorOf(Component c)(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusCycleRoot()(Code)(Java Doc) final public boolean isFocusTraversalPolicyProvider()(Code)(Java Doc) public boolean isFocusTraversalPolicySet()(Code)(Java Doc) public void layout()(Code)(Java Doc) public void list(PrintStream out, int indent)(Code)(Java Doc) public void list(PrintWriter out, int indent)(Code)(Java Doc) public Component locate(int x, int y)(Code)(Java Doc) public Dimension minimumSize()(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintComponents(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) public Dimension preferredSize()(Code)(Java Doc) public void print(Graphics g)(Code)(Java Doc) public void printComponents(Graphics g)(Code)(Java Doc) protected void processContainerEvent(ContainerEvent e)(Code)(Java Doc) protected void processEvent(AWTEvent e)(Code)(Java Doc) public void remove(int index)(Code)(Java Doc) public void remove(Component comp)(Code)(Java Doc) public void removeAll()(Code)(Java Doc) public synchronized void removeContainerListener(ContainerListener l)(Code)(Java Doc) public void removeNotify()(Code)(Java Doc) public void setComponentZOrder(Component comp, int index)(Code)(Java Doc) public void setFocusCycleRoot(boolean focusCycleRoot)(Code)(Java Doc) public void setFocusTraversalKeys(int id, Set<? extends AWTKeyStroke> keystrokes)(Code)(Java Doc) public void setFocusTraversalPolicy(FocusTraversalPolicy policy)(Code)(Java Doc) final public void setFocusTraversalPolicyProvider(boolean provider)(Code)(Java Doc) public void setFont(Font f)(Code)(Java Doc) public void setLayout(LayoutManager mgr)(Code)(Java Doc) public void transferFocusDownCycle()(Code)(Java Doc) public void update(Graphics g)(Code)(Java Doc) public void validate()(Code)(Java Doc) protected void validateTree()(Code)(Java Doc)
|
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)
|
|
|