| |
|
| java.lang.Object java.awt.Component java.awt.List
List | public class List extends Component implements ItemSelectable,Accessible(Code) | | The List component presents the user with a
scrolling list of text items. The list can be set up so that
the user can choose either one item or multiple items.
For example, the code . . .
List lst = new List(4, false);
lst.add("Mercury");
lst.add("Venus");
lst.add("Earth");
lst.add("JavaSoft");
lst.add("Mars");
lst.add("Jupiter");
lst.add("Saturn");
lst.add("Uranus");
lst.add("Neptune");
lst.add("Pluto");
cnt.add(lst);
where cnt is a container, produces the following
scrolling list:
If the List allows multiple selections, then clicking on
an item that is already selected deselects it. In the preceding
example, only one item from the scrolling list can be selected
at a time, since the second argument when creating the new scrolling
list is false . If the List does not allow multiple
selections, selecting an item causes any other selected item
to be deselected.
Note that the list in the example shown was created with four visible
rows. Once the list has been created, the number of visible rows
cannot be changed. A default List is created with
four rows, so that lst = new List() is equivalent to
list = new List(4, false) .
Beginning with Java 1.1, the Abstract Window Toolkit
sends the List object all mouse, keyboard, and focus events
that occur over it. (The old AWT event model is being maintained
only for backwards compatibility, and its use is discouraged.)
When an item is selected or deselected by the user, AWT sends an instance
of ItemEvent to the list.
When the user double-clicks on an item in a scrolling list,
AWT sends an instance of ActionEvent to the
list following the item event. AWT also generates an action event
when the user presses the return key while an item in the
list is selected.
If an application wants to perform some action based on an item
in this list being selected or activated by the user, it should implement
ItemListener or ActionListener
as appropriate and register the new listener to receive
events from this list.
For multiple-selection scrolling lists, it is considered a better
user interface to use an external gesture (such as clicking on a
button) to trigger the action.
version: 1.118, 05/15/07 author: Sami Shaio See Also: java.awt.event.ItemEvent See Also: java.awt.event.ItemListener See Also: java.awt.event.ActionEvent See Also: java.awt.event.ActionListener since: JDK1.0 |
Field Summary | |
final static int | DEFAULT_VISIBLE_ROWS The default number of visible rows is 4. | transient ActionListener | actionListener | transient ItemListener | itemListener | Vector | items A vector created to contain items which will become
part of the List Component. | boolean | multipleMode multipleMode is a variable that will
be set to true if a list component is to be set to
multiple selection mode, that is where the user can
select more than one item in a list at one time. | int | rows This field will represent the number of visible rows in the
List Component. | int | selected selected is an array that will contain
the indices of items that have been selected. | int | visibleIndex This variable contains the value that will be used
when trying to make a particular list item visible. |
Constructor Summary | |
public | List() Creates a new scrolling list.
By default, there are four visible lines and multiple selections are
not allowed. | public | List(int rows) Creates a new scrolling list initialized with the specified
number of visible lines. | public | List(int rows, boolean multipleMode) Creates a new scrolling list initialized to display the specified
number of rows. |
Method Summary | |
public void | add(String item) Adds the specified item to the end of scrolling list. | public void | add(String item, int index) Adds the specified item to the the scrolling list
at the position indicated by the index. | public synchronized void | addActionListener(ActionListener l) Adds the specified action listener to receive action events from
this list. | public void | addItem(String item) | public synchronized void | addItem(String item, int index) | public synchronized void | addItemListener(ItemListener l) Adds the specified item listener to receive item events from
this list. | public void | addNotify() Creates the peer for the list. | public boolean | allowsMultipleSelections() | public synchronized void | clear() | String | constructComponentName() Construct a name for this component. | public int | countItems() | public void | delItem(int position) | public synchronized void | delItems(int start, int end) | public synchronized void | deselect(int index) Deselects the item at the specified index.
Note that passing out of range parameters is invalid,
and will result in unspecified behavior. | boolean | eventEnabled(AWTEvent e) | public AccessibleContext | getAccessibleContext() Gets the AccessibleContext associated with this
List . | public synchronized ActionListener[] | getActionListeners() Returns an array of all the action listeners
registered on this list. | public String | getItem(int index) Gets the item associated with the specified index. | public int | getItemCount() Gets the number of items in the list. | final String | getItemImpl(int index) | public synchronized ItemListener[] | getItemListeners() Returns an array of all the item listeners
registered on this list. | public synchronized String[] | getItems() Gets the items in the list. | public T[] | getListeners(Class<T> listenerType) Returns an array of all the objects currently registered
as FooListener s
upon this List . | public Dimension | getMinimumSize(int rows) Gets the minumum dimensions for a list with the specified
number of rows. | public Dimension | getMinimumSize() Determines the minimum size of this scrolling list. | public Dimension | getPreferredSize(int rows) Gets the preferred dimensions for a list with the specified
number of rows. | public Dimension | getPreferredSize() Gets the preferred size of this scrolling list. | public int | getRows() Gets the number of visible lines in this list. | public synchronized int | getSelectedIndex() Gets the index of the selected item on the list,
the index of the selected item; if no item is selected, or if multiple items are selected, -1 is returned. | public synchronized int[] | getSelectedIndexes() Gets the selected indexes on the list.
an array of the selected indexes on this scrolling list; if no item is selected, a zero-length array is returned. | public synchronized String | getSelectedItem() Gets the selected item on this scrolling list.
the selected item on the list; if no item is selected, or if multiple items are selected, null is returned. | public synchronized String[] | getSelectedItems() Gets the selected items on this scrolling list.
an array of the selected items on this scrolling list;if no item is selected, a zero-length array is returned. | public Object[] | getSelectedObjects() Gets the selected items on this scrolling list in an array of Objects. | public int | getVisibleIndex() Gets the index of the item that was last made visible by
the method makeVisible . | public boolean | isIndexSelected(int index) Determines if the specified item in this scrolling list is
selected. | public boolean | isMultipleMode() Determines whether this list allows multiple selections. | public boolean | isSelected(int index) | public synchronized void | makeVisible(int index) Makes the item at the specified index visible. | public Dimension | minimumSize(int rows) | public Dimension | minimumSize() | protected String | paramString() Returns the parameter string representing the state of this
scrolling list. | public Dimension | preferredSize(int rows) | public Dimension | preferredSize() | protected void | processActionEvent(ActionEvent e) Processes action events occurring on this component
by dispatching them to any registered
ActionListener objects.
This method is not called unless action events are
enabled for this component. | protected void | processEvent(AWTEvent e) Processes events on this scrolling list. | protected void | processItemEvent(ItemEvent e) Processes item events occurring on this list by
dispatching them to any registered
ItemListener objects.
This method is not called unless item events are
enabled for this component. | public synchronized void | remove(String item) Removes the first occurrence of an item from the list. | public void | remove(int position) Removes the item at the specified position
from this scrolling list. | public synchronized void | removeActionListener(ActionListener l) Removes the specified action listener so that it no longer
receives action events from this list. | public void | removeAll() Removes all items from this list. | public synchronized void | removeItemListener(ItemListener l) Removes the specified item listener so that it no longer
receives item events from this list. | public void | removeNotify() Removes the peer for this list. | public synchronized void | replaceItem(String newValue, int index) Replaces the item at the specified index in the scrolling list
with the new string. | public void | select(int index) Selects the item at the specified index in the scrolling list.
Note that passing out of range parameters is invalid,
and will result in unspecified behavior. | public void | setMultipleMode(boolean b) Sets the flag that determines whether this list
allows multiple selections.
When the selection mode is changed from multiple-selection to
single-selection, the selected items change as follows:
If a selected item has the location cursor, only that
item will remain selected. | public synchronized void | setMultipleSelections(boolean b) |
DEFAULT_VISIBLE_ROWS | final static int DEFAULT_VISIBLE_ROWS(Code) | | The default number of visible rows is 4. A list with
zero rows is unusable and unsightly.
|
multipleMode | boolean multipleMode(Code) | | multipleMode is a variable that will
be set to true if a list component is to be set to
multiple selection mode, that is where the user can
select more than one item in a list at one time.
multipleMode will be set to false if the
list component is set to single selection, that is where
the user can only select one item on the list at any
one time.
See Also: List.isMultipleMode() See Also: List.setMultipleMode(boolean) |
rows | int rows(Code) | | This field will represent the number of visible rows in the
List Component. It is specified only once, and
that is when the list component is actually
created. It will never change.
See Also: List.getRows() |
visibleIndex | int visibleIndex(Code) | | This variable contains the value that will be used
when trying to make a particular list item visible.
See Also: List.makeVisible(int) |
List | public List() throws HeadlessException(Code) | | Creates a new scrolling list.
By default, there are four visible lines and multiple selections are
not allowed. Note that this is a convenience method for
List(0, false) . Also note that the number of visible
lines in the list cannot be changed after it has been created.
exception: HeadlessException - if GraphicsEnvironment.isHeadless()returns true. See Also: java.awt.GraphicsEnvironment.isHeadless |
List | public List(int rows) throws HeadlessException(Code) | | Creates a new scrolling list initialized with the specified
number of visible lines. By default, multiple selections are
not allowed. Note that this is a convenience method for
List(rows, false) . Also note that the number
of visible rows in the list cannot be changed after it has
been created.
Parameters: rows - the number of items to show. exception: HeadlessException - if GraphicsEnvironment.isHeadless()returns true. See Also: java.awt.GraphicsEnvironment.isHeadless since: JDK1.1 |
List | public List(int rows, boolean multipleMode) throws HeadlessException(Code) | | Creates a new scrolling list initialized to display the specified
number of rows. Note that if zero rows are specified, then
the list will be created with a default of four rows.
Also note that the number of visible rows in the list cannot
be changed after it has been created.
If the value of multipleMode is
true , then the user can select multiple items from
the list. If it is false , only one item at a time
can be selected.
Parameters: rows - the number of items to show. Parameters: multipleMode - if true ,then multiple selections are allowed;otherwise, only one item can be selected at a time. exception: HeadlessException - if GraphicsEnvironment.isHeadless()returns true. See Also: java.awt.GraphicsEnvironment.isHeadless |
add | public void add(String item)(Code) | | Adds the specified item to the end of scrolling list.
Parameters: item - the item to be added since: JDK1.1 |
add | public void add(String item, int index)(Code) | | Adds the specified item to the the scrolling list
at the position indicated by the index. The index is
zero-based. If the value of the index is less than zero,
or if the value of the index is greater than or equal to
the number of items in the list, then the item is added
to the end of the list.
Parameters: item - the item to be added;if this parameter is null then the item istreated as an empty string, "" Parameters: index - the position at which to add the item since: JDK1.1 |
addItem | public synchronized void addItem(String item, int index)(Code) | | |
addNotify | public void addNotify()(Code) | | Creates the peer for the list. The peer allows us to modify the
list's appearance without changing its functionality.
|
allowsMultipleSelections | public boolean allowsMultipleSelections()(Code) | | |
clear | public synchronized void clear()(Code) | | |
constructComponentName | String constructComponentName()(Code) | | Construct a name for this component. Called by
getName when the name is null .
|
countItems | public int countItems()(Code) | | |
delItem | public void delItem(int position)(Code) | | |
delItems | public synchronized void delItems(int start, int end)(Code) | | |
deselect | public synchronized void deselect(int index)(Code) | | Deselects the item at the specified index.
Note that passing out of range parameters is invalid,
and will result in unspecified behavior.
If the item at the specified index is not selected,
then the operation is ignored.
Parameters: index - the position of the item to deselect See Also: List.select See Also: List.getSelectedItem See Also: List.isIndexSelected |
getAccessibleContext | public AccessibleContext getAccessibleContext()(Code) | | Gets the AccessibleContext associated with this
List . For lists, the AccessibleContext
takes the form of an AccessibleAWTList .
A new AccessibleAWTList instance is created, if necessary.
an AccessibleAWTList that serves as the AccessibleContext of this List since: 1.3 |
getItem | public String getItem(int index)(Code) | | Gets the item associated with the specified index.
an item that is associated withthe specified index Parameters: index - the position of the item See Also: List.getItemCount |
getItemCount | public int getItemCount()(Code) | | Gets the number of items in the list.
the number of items in the list See Also: List.getItem since: JDK1.1 |
getListeners | public T[] getListeners(Class<T> listenerType)(Code) | | Returns an array of all the objects currently registered
as FooListener s
upon this List .
FooListener s are registered using the
addFooListener method.
You can specify the listenerType argument
with a class literal, such as
FooListener.class .
For example, you can query a
List l
for its item listeners with the following code:
ItemListener[] ils = (ItemListener[])(l.getListeners(ItemListener.class));
If no such listeners exist, this method returns an empty array.
Parameters: listenerType - the type of listeners requested; this parametershould specify an interface that descends fromjava.util.EventListener an array of all objects registered asFooListener s on this list,or an empty array if no suchlisteners have been added exception: ClassCastException - if listenerType doesn't specify a class or interface that implementsjava.util.EventListener See Also: List.getItemListeners since: 1.3 |
getMinimumSize | public Dimension getMinimumSize(int rows)(Code) | | Gets the minumum dimensions for a list with the specified
number of rows.
Parameters: rows - number of rows in the list the minimum dimensions for displaying this scrolling listgiven that the specified number of rows must be visible See Also: java.awt.Component.getMinimumSize since: JDK1.1 |
getPreferredSize | public Dimension getPreferredSize(int rows)(Code) | | Gets the preferred dimensions for a list with the specified
number of rows.
Parameters: rows - number of rows in the list the preferred dimensions for displaying this scrolling listgiven that the specified number of rows must be visible See Also: java.awt.Component.getPreferredSize since: JDK1.1 |
getRows | public int getRows()(Code) | | Gets the number of visible lines in this list. Note that
once the List has been created, this number
will never change.
the number of visible lines in this scrolling list |
getSelectedIndex | public synchronized int getSelectedIndex()(Code) | | Gets the index of the selected item on the list,
the index of the selected item; if no item is selected, or if multiple items are selected, -1 is returned. See Also: List.select See Also: List.deselect See Also: List.isIndexSelected |
getSelectedIndexes | public synchronized int[] getSelectedIndexes()(Code) | | Gets the selected indexes on the list.
an array of the selected indexes on this scrolling list; if no item is selected, a zero-length array is returned. See Also: List.select See Also: List.deselect See Also: List.isIndexSelected |
getSelectedItem | public synchronized String getSelectedItem()(Code) | | Gets the selected item on this scrolling list.
the selected item on the list; if no item is selected, or if multiple items are selected, null is returned. See Also: List.select See Also: List.deselect See Also: List.isIndexSelected |
getSelectedItems | public synchronized String[] getSelectedItems()(Code) | | Gets the selected items on this scrolling list.
an array of the selected items on this scrolling list;if no item is selected, a zero-length array is returned. See Also: List.select See Also: List.deselect See Also: List.isIndexSelected |
getSelectedObjects | public Object[] getSelectedObjects()(Code) | | Gets the selected items on this scrolling list in an array of Objects.
an array of Object s representing the selected items on this scrolling list;if no item is selected, a zero-length array is returned. See Also: List.getSelectedItems See Also: ItemSelectable |
getVisibleIndex | public int getVisibleIndex()(Code) | | Gets the index of the item that was last made visible by
the method makeVisible .
the index of the item that was last made visible See Also: List.makeVisible |
isIndexSelected | public boolean isIndexSelected(int index)(Code) | | Determines if the specified item in this scrolling list is
selected.
Parameters: index - the item to be checked true if the specified item has beenselected; false otherwise See Also: List.select See Also: List.deselect since: JDK1.1 |
isMultipleMode | public boolean isMultipleMode()(Code) | | Determines whether this list allows multiple selections.
true if this list allows multipleselections; otherwise, false See Also: List.setMultipleMode since: JDK1.1 |
isSelected | public boolean isSelected(int index)(Code) | | |
makeVisible | public synchronized void makeVisible(int index)(Code) | | Makes the item at the specified index visible.
Parameters: index - the position of the item See Also: List.getVisibleIndex |
paramString | protected String paramString()(Code) | | Returns the parameter string representing the state of this
scrolling list. This string is useful for debugging.
the parameter string of this scrolling list |
processActionEvent | protected void processActionEvent(ActionEvent e)(Code) | | Processes action events occurring on this component
by dispatching them to any registered
ActionListener objects.
This method is not called unless action events are
enabled for this component. Action events are enabled
when one of the following occurs:
- An
ActionListener object is registered
via addActionListener .
- Action events are enabled via
enableEvents .
Note that if the event parameter is null
the behavior is unspecified and may result in an
exception.
Parameters: e - the action event See Also: java.awt.event.ActionEvent See Also: java.awt.event.ActionListener See Also: List.addActionListener See Also: java.awt.Component.enableEvents since: JDK1.1 |
processEvent | protected void processEvent(AWTEvent e)(Code) | | Processes events on this scrolling list. If an event is
an instance of ItemEvent , it invokes the
processItemEvent method. Else, if the
event is an instance of ActionEvent ,
it invokes processActionEvent .
If the event is not an item event or an action event,
it invokes processEvent on the superclass.
Note that if the event parameter is null
the behavior is unspecified and may result in an
exception.
Parameters: e - the event See Also: java.awt.event.ActionEvent See Also: java.awt.event.ItemEvent See Also: List.processActionEvent See Also: List.processItemEvent since: JDK1.1 |
processItemEvent | protected void processItemEvent(ItemEvent e)(Code) | | Processes item events occurring on this list by
dispatching them to any registered
ItemListener objects.
This method is not called unless item events are
enabled for this component. Item events are enabled
when one of the following occurs:
- An
ItemListener object is registered
via addItemListener .
- Item events are enabled via
enableEvents .
Note that if the event parameter is null
the behavior is unspecified and may result in an
exception.
Parameters: e - the item event See Also: java.awt.event.ItemEvent See Also: java.awt.event.ItemListener See Also: List.addItemListener See Also: java.awt.Component.enableEvents since: JDK1.1 |
remove | public synchronized void remove(String item)(Code) | | Removes the first occurrence of an item from the list.
If the specified item is selected, and is the only selected
item in the list, the list is set to have no selection.
Parameters: item - the item to remove from the list exception: IllegalArgumentException - if the item doesn't exist in the list since: JDK1.1 |
remove | public void remove(int position)(Code) | | Removes the item at the specified position
from this scrolling list.
If the item with the specified position is selected, and is the
only selected item in the list, the list is set to have no selection.
Parameters: position - the index of the item to delete See Also: List.add(String,int) since: JDK1.1 exception: ArrayIndexOutOfBoundsException - if the position is less than 0 orgreater than getItemCount()-1 |
removeNotify | public void removeNotify()(Code) | | Removes the peer for this list. The peer allows us to modify the
list's appearance without changing its functionality.
|
replaceItem | public synchronized void replaceItem(String newValue, int index)(Code) | | Replaces the item at the specified index in the scrolling list
with the new string.
Parameters: newValue - a new string to replace an existing item Parameters: index - the position of the item to replace exception: ArrayIndexOutOfBoundsException - if index is out of range |
select | public void select(int index)(Code) | | Selects the item at the specified index in the scrolling list.
Note that passing out of range parameters is invalid,
and will result in unspecified behavior.
Note that this method should be primarily used to
initially select an item in this component.
Programmatically calling this method will not trigger
an ItemEvent . The only way to trigger an
ItemEvent is by user interaction.
Parameters: index - the position of the item to select See Also: List.getSelectedItem See Also: List.deselect See Also: List.isIndexSelected |
setMultipleMode | public void setMultipleMode(boolean b)(Code) | | Sets the flag that determines whether this list
allows multiple selections.
When the selection mode is changed from multiple-selection to
single-selection, the selected items change as follows:
If a selected item has the location cursor, only that
item will remain selected. If no selected item has the
location cursor, all items will be deselected.
Parameters: b - if true then multiple selectionsare allowed; otherwise, only one item fromthe list can be selected at once See Also: List.isMultipleMode since: JDK1.1 |
setMultipleSelections | public synchronized void setMultipleSelections(boolean b)(Code) | | |
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) void adjustListeningChildrenOnParent(long mask, int num)(Code)(Java Doc) public void applyComponentOrientation(ComponentOrientation orientation)(Code)(Java Doc) public boolean areFocusTraversalKeysSet(int id)(Code)(Java Doc) boolean areInputMethodsEnabled()(Code)(Java Doc) void autoProcessMouseWheel(MouseWheelEvent e)(Code)(Java Doc) public Rectangle bounds()(Code)(Java Doc) final boolean canBeFocusOwner()(Code)(Java Doc) void checkGD(String stringID)(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) boolean checkWindowClosingException()(Code)(Java Doc) void clearCurrentFocusCycleRootOnHide()(Code)(Java Doc) void clearMostRecentFocusOwnerOnHide()(Code)(Java Doc) protected AWTEvent coalesceEvents(AWTEvent existingEvent, AWTEvent newEvent)(Code)(Java Doc) String constructComponentName()(Code)(Java Doc) public boolean contains(int x, int y)(Code)(Java Doc) public boolean contains(Point p)(Code)(Java Doc) boolean containsFocus()(Code)(Java Doc) int countHierarchyMembers()(Code)(Java Doc) void createBufferStrategy(int numBuffers)(Code)(Java Doc) void createBufferStrategy(int numBuffers, BufferCapabilities caps) throws AWTException(Code)(Java Doc) int createHierarchyEvents(int id, Component changed, Container changedParent, long changeFlags, boolean enabledOnToolkit)(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) void dispatchEventImpl(AWTEvent e)(Code)(Java Doc) boolean dispatchMouseWheelToAncestor(MouseWheelEvent 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) boolean eventEnabled(AWTEvent e)(Code)(Java Doc) boolean eventTypeEnabled(int type)(Code)(Java Doc) Component findUnderMouseInWindow(PointerInfo pi)(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) int getAccessibleIndexInParent()(Code)(Java Doc) AccessibleStateSet getAccessibleStateSet()(Code)(Java Doc) public float getAlignmentX()(Code)(Java Doc) public float getAlignmentY()(Code)(Java Doc) Image getBackBuffer()(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) int getBoundsOp()(Code)(Java Doc) BufferStrategy getBufferStrategy()(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) Window getContainingWindow()(Code)(Java Doc) static Window getContainingWindow(Component comp)(Code)(Java Doc) public Cursor getCursor()(Code)(Java Doc) final Cursor getCursor_NoClientCode()(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) final Set getFocusTraversalKeys_NoIDCheck(int id)(Code)(Java Doc) public Font getFont()(Code)(Java Doc) public FontMetrics getFontMetrics(Font font)(Code)(Java Doc) final Font getFont_NoClientCode()(Code)(Java Doc) public Color getForeground()(Code)(Java Doc) public Graphics getGraphics()(Code)(Java Doc) public GraphicsConfiguration getGraphicsConfiguration()(Code)(Java Doc) final GraphicsConfiguration getGraphicsConfiguration_NoClientCode()(Code)(Java Doc) final Graphics getGraphics_NoClientCode()(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) final Point getLocationOnScreen_NoTreeLock()(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) Container getNativeContainer()(Code)(Java Doc) public Container getParent()(Code)(Java Doc) final Container getParent_NoClientCode()(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 Toolkit getToolkitImpl()(Code)(Java Doc) Container getTraversalRoot()(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) void initializeFocusTraversalKeys()(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) final boolean isCoalescingEnabled()(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) final boolean isEnabledImpl()(Code)(Java Doc) public boolean isFocusCycleRoot(Container container)(Code)(Java Doc) public boolean isFocusOwner()(Code)(Java Doc) public boolean isFocusTraversable()(Code)(Java Doc) final boolean isFocusTraversableOverridden()(Code)(Java Doc) public boolean isFocusable()(Code)(Java Doc) public boolean isFontSet()(Code)(Java Doc) public boolean isForegroundSet()(Code)(Java Doc) static boolean isInstanceOf(Object obj, String className)(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) boolean isRecursivelyVisible()(Code)(Java Doc) boolean isSameOrAncestorOf(Component comp, boolean allowChildren)(Code)(Java Doc) public boolean isShowing()(Code)(Java Doc) public boolean isValid()(Code)(Java Doc) public boolean isVisible()(Code)(Java Doc) final boolean isVisible_NoClientCode()(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) void lightweightPaint(Graphics g)(Code)(Java Doc) void lightweightPrint(Graphics g)(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) int numListening(long mask)(Code)(Java Doc) public void paint(Graphics g)(Code)(Java Doc) public void paintAll(Graphics g)(Code)(Java Doc) void paintHeavyweightComponents(Graphics g)(Code)(Java Doc) protected String paramString()(Code)(Java Doc) Point pointRelativeToComponent(Point absolute)(Code)(Java Doc) public boolean postEvent(Event e)(Code)(Java Doc) static boolean postNextFocusHelper(Component toFocus, CausedFocusEvent.Cause cause)(Code)(Java Doc) boolean postsOldMouseEvents()(Code)(Java Doc) final Component preNextFocusHelper()(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) void printHeavyweightComponents(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) void requestFocus(CausedFocusEvent.Cause cause)(Code)(Java Doc) protected boolean requestFocus(boolean temporary)(Code)(Java Doc) boolean requestFocus(boolean temporary, CausedFocusEvent.Cause cause)(Code)(Java Doc) final boolean requestFocusHelper(boolean temporary, boolean focusedWindowChangeAllowed)(Code)(Java Doc) final boolean requestFocusHelper(boolean temporary, boolean focusedWindowChangeAllowed, CausedFocusEvent.Cause cause)(Code)(Java Doc) public boolean requestFocusInWindow()(Code)(Java Doc) boolean requestFocusInWindow(CausedFocusEvent.Cause cause)(Code)(Java Doc) protected boolean requestFocusInWindow(boolean temporary)(Code)(Java Doc) boolean requestFocusInWindow(boolean temporary, CausedFocusEvent.Cause cause)(Code)(Java Doc) void resetGC()(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) void setBoundsOp(int op)(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) final void setFocusTraversalKeys_NoIDCheck(int id, Set<? extends AWTKeyStroke> keystrokes)(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) void setGCFromPeer()(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) static synchronized void setRequestFocusController(RequestFocusController requestController)(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) final void updateCursorImmediately()(Code)(Java Doc) public void validate()(Code)(Java Doc)
|
|
|
|