Java Doc for List.java in  » 6.0-JDK-Modules » j2me » java » awt » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » java.awt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.Component
      java.awt.List

List
public class List extends Component implements ItemSelectable(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:

Clicking on an item that isn't selected selects it. 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. Selecting an item causes any other selected item to be automatically deselected.

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, 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, 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.77, %G
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  intDEFAULT_VISIBLE_ROWS
     The default number of visible rows is 4.
transient  ActionListeneractionListener
    
transient  ItemListeneritemListener
    
 Vectoritems
     A vector created to contain items which will become part of the List Component.
 booleanmultipleMode
     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.
 introws
     This field will represent the number of rows in the List Component.
 intselected
     selected is an array that will contain the indices of items that have been selected.
 intvisibleIndex
     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.
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  voidadd(String item)
     Adds the specified item to the end of scrolling list.
public  voidadd(String item, int index)
     Adds the specified item to the the scrolling list at the position indicated by the index.
public synchronized  voidaddActionListener(ActionListener l)
     Adds the specified action listener to receive action events from this list.
public  voidaddItem(String item)
    
public synchronized  voidaddItem(String item, int index)
    
public synchronized  voidaddItemListener(ItemListener l)
     Adds the specified item listener to receive item events from this list.
public  voidaddNotify()
     Creates the peer for the list.
public  booleanallowsMultipleSelections()
    
public synchronized  voidclear()
    
 StringconstructComponentName()
     Construct a name for this component.
public  intcountItems()
    
public  voiddelItem(int position)
    
public synchronized  voiddelItems(int start, int end)
    
public synchronized  voiddeselect(int index)
     Deselects the item at the specified index.
 booleaneventEnabled(AWTEvent e)
    
public synchronized  ActionListener[]getActionListeners()
     Returns an array of all the action listeners registered on this list.
public  StringgetItem(int index)
     Gets the item associated with the specified index.
public  intgetItemCount()
     Gets the number of items in the list.
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  DimensiongetMinimumSize(int rows)
     Gets the minumum dimensions for a list with the specified number of rows.
Parameters:
  rows - number of rows in the list.
public  DimensiongetMinimumSize()
     Determines the minimum size of this scrolling list.
public  DimensiongetPreferredSize(int rows)
     Gets the preferred dimensions for a list with the specified number of rows.
Parameters:
  rows - number of rows in the list.
public  DimensiongetPreferredSize()
     Gets the preferred size of this scrolling list.
public  intgetRows()
     Get the number of visible lines in this list.
public synchronized  intgetSelectedIndex()
    
public synchronized  int[]getSelectedIndexes()
     Gets the selected indexes on the list. an array of the selected indexesof this scrolling list.
public synchronized  StringgetSelectedItem()
     Get the selected item on this scrolling list.
public synchronized  String[]getSelectedItems()
     Get the selected items on this scrolling list.
public  Object[]getSelectedObjects()
     Returns the selected items on the list in an array of Objects.
public  intgetVisibleIndex()
     Gets the index of the item that was last made visible by the method makeVisible.
public  booleanisIndexSelected(int index)
     Determines if the specified item in this scrolling list is selected.
Parameters:
  index - the item to be checked.
public  booleanisMultipleMode()
     Determines whether this list allows multiple selections.
public  booleanisSelected(int index)
    
public synchronized  voidmakeVisible(int index)
     Makes the item at the specified index visible.
public  DimensionminimumSize(int rows)
    
public  DimensionminimumSize()
    
protected  StringparamString()
     Returns the parameter string representing the state of this scrolling list.
public  DimensionpreferredSize(int rows)
    
public  DimensionpreferredSize()
    
protected  voidprocessActionEvent(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  voidprocessEvent(AWTEvent e)
     Processes events on this scrolling list.
protected  voidprocessItemEvent(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  voidremove(String item)
     Removes the first occurrence of an item from the list.
public  voidremove(int position)
     Remove the item at the specified position from this scrolling list.
public synchronized  voidremoveActionListener(ActionListener l)
     Removes the specified action listener so that it no longer receives action events from this list.
public  voidremoveAll()
     Removes all items from this list.
public synchronized  voidremoveItemListener(ItemListener l)
     Removes the specified item listener so that it no longer receives item events from this list.
public  voidremoveNotify()
     Removes the peer for this list.
public synchronized  voidreplaceItem(String newValue, int index)
     Replaces the item at the specified index in the scrolling list with the new string.
public  voidselect(int index)
     Selects the item at the specified index in the scrolling list.
public  voidsetMultipleMode(boolean b)
     Sets the flag that determines whether this list allows multiple selections.
public synchronized  voidsetMultipleSelections(boolean b)
    

Field Detail
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.



actionListener
transient ActionListener actionListener(Code)



itemListener
transient ItemListener itemListener(Code)



items
Vector items(Code)
A vector created to contain items which will become part of the List Component.
See Also:    addItem()
See Also:    getItem()



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:    isMultipleMode()
See Also:    setMultipleMode()



rows
int rows(Code)
This field will represent the number of 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:    getRows()



selected
int selected(Code)
selected is an array that will contain the indices of items that have been selected.
See Also:    getSelectedIndexes()
See Also:    getSelectedIndex()



visibleIndex
int visibleIndex(Code)
This variable contains the value that will be used when trying to make a particular list item visible.
See Also:    makeVisible()




Constructor Detail
List
public List()(Code)
Creates a new scrolling list. By default, there are four visible lines and multiple selections are not allowed.



List
public List(int rows)(Code)
Creates a new scrolling list initialized with the specified number of visible lines. By default, multiple selections are not allowed.
Parameters:
  rows - the number of items to show.
since:
   JDK1.1



List
public List(int rows, boolean multipleMode)(Code)
Creates a new scrolling list initialized to display the specified number of rows. 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.




Method Detail
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



addActionListener
public synchronized void addActionListener(ActionListener l)(Code)
Adds the specified action listener to receive action events from this list. Action events occur when a user double-clicks on a list item. If l is null, no exception is thrown and no action is performed.
Parameters:
  l - the action listener.
See Also:   java.awt.event.ActionEvent
See Also:   java.awt.event.ActionListener
See Also:   java.awt.List.removeActionListener
since:
   JDK1.1



addItem
public void addItem(String item)(Code)



addItem
public synchronized void addItem(String item, int index)(Code)



addItemListener
public synchronized void addItemListener(ItemListener l)(Code)
Adds the specified item listener to receive item events from this list. If l is null, no exception is thrown and no action is performed.
Parameters:
  l - the item listener.
See Also:   java.awt.event.ItemEvent
See Also:   java.awt.event.ItemListener
See Also:   java.awt.List.removeItemListener
since:
   JDK1.1



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.

If the item at the specified index is not selected, or if the index is out of range, then the operation is ignored.
Parameters:
  index - the position of the item to deselect.
See Also:   java.awt.List.select
See Also:   java.awt.List.getSelectedItem
See Also:   java.awt.List.isIndexSelected




eventEnabled
boolean eventEnabled(AWTEvent e)(Code)



getActionListeners
public synchronized ActionListener[] getActionListeners()(Code)
Returns an array of all the action listeners registered on this list. all of this list's ActionListenersor an empty array if no actionlisteners are currently registered
See Also:   List.addActionListener
See Also:   List.removeActionListener
See Also:   java.awt.event.ActionEvent
See Also:   java.awt.event.ActionListener
since:
   1.4



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:   java.awt.List.getItemCount



getItemCount
public int getItemCount()(Code)
Gets the number of items in the list. the number of items in the list.
See Also:   java.awt.List.getItem
since:
   JDK1.1



getItemListeners
public synchronized ItemListener[] getItemListeners()(Code)
Returns an array of all the item listeners registered on this list. all of this list's ItemListenersor an empty array if no itemlisteners are currently registered
See Also:   List.addItemListener
See Also:   List.removeItemListener
See Also:   java.awt.event.ItemEvent
See Also:   java.awt.event.ItemListener
since:
   1.4



getItems
public synchronized String[] getItems()(Code)
Gets the items in the list. a string array containing items of the list.
See Also:   java.awt.List.select
See Also:   java.awt.List.deselect
See Also:   java.awt.List.isIndexSelected
since:
   JDK1.1



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



getMinimumSize
public Dimension getMinimumSize()(Code)
Determines the minimum size of this scrolling list. the minimum dimensions neededto display this scrolling list.
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



getPreferredSize
public Dimension getPreferredSize()(Code)
Gets the preferred size of this scrolling list. the preferred dimensions for displaying this scrolling list.
See Also:   java.awt.Component.getPreferredSize
since:
   JDK1.1



getRows
public int getRows()(Code)
Get the number of visible lines in this list. 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, or-1 if no item is selected,or if more that one item is selected.
See Also:   java.awt.List.select
See Also:   java.awt.List.deselect
See Also:   java.awt.List.isIndexSelected



getSelectedIndexes
public synchronized int[] getSelectedIndexes()(Code)
Gets the selected indexes on the list. an array of the selected indexesof this scrolling list. If no items areselected, a zero-length array is returned.
See Also:   java.awt.List.select
See Also:   java.awt.List.deselect
See Also:   java.awt.List.isIndexSelected



getSelectedItem
public synchronized String getSelectedItem()(Code)
Get the selected item on this scrolling list. the selected item on the list,or null if no item is selected.
See Also:   java.awt.List.select
See Also:   java.awt.List.deselect
See Also:   java.awt.List.isIndexSelected



getSelectedItems
public synchronized String[] getSelectedItems()(Code)
Get the selected items on this scrolling list. an array of the selected itemson this scrolling list.
See Also:   java.awt.List.select
See Also:   java.awt.List.deselect
See Also:   java.awt.List.isIndexSelected



getSelectedObjects
public Object[] getSelectedObjects()(Code)
Returns the selected items on the list in an array of Objects.
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:   java.awt.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:   java.awt.List.select
See Also:   java.awt.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:   java.awt.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:   java.awt.List.getVisibleIndex



minimumSize
public Dimension minimumSize(int rows)(Code)



minimumSize
public Dimension minimumSize()(Code)



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.



preferredSize
public Dimension preferredSize(int rows)(Code)



preferredSize
public Dimension preferredSize()(Code)



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.

Parameters:
  e - the action event.
See Also:   java.awt.event.ActionEvent
See Also:   java.awt.event.ActionListener
See Also:   java.awt.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.
Parameters:
  e - the event.
See Also:   java.awt.event.ActionEvent
See Also:   java.awt.event.ItemEvent
See Also:   java.awt.List.processActionEvent
See Also:   java.awt.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.

Parameters:
  e - the item event.
See Also:   java.awt.event.ItemEvent
See Also:   java.awt.event.ItemListener
See Also:   java.awt.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.
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)
Remove the item at the specified position from this scrolling list.
Parameters:
  position - the index of the item to delete.
See Also:   java.awt.List.add(Stringint)
since:
   JDK1.1
exception:
  ArrayIndexOutOfBoundsException - if the position is less than 0 orgreater than getItemCount()-1



removeActionListener
public synchronized void removeActionListener(ActionListener l)(Code)
Removes the specified action listener so that it no longer receives action events from this list. Action events occur when a user double-clicks on a list item. If l is null, no exception is thrown and no action is performed.
Parameters:
  l - the action listener.
See Also:   java.awt.event.ActionEvent
See Also:   java.awt.event.ActionListener
See Also:   java.awt.List.addActionListener
since:
   JDK1.1



removeAll
public void removeAll()(Code)
Removes all items from this list.
See Also:   List.remove
See Also:   List.delItems
since:
   JDK1.1



removeItemListener
public synchronized void removeItemListener(ItemListener l)(Code)
Removes the specified item listener so that it no longer receives item events from this list. If l is null, no exception is thrown and no action is performed.
Parameters:
  l - the item listener.
See Also:   java.awt.event.ItemEvent
See Also:   java.awt.event.ItemListener
See Also:   java.awt.List.addItemListener
since:
   JDK1.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.



select
public void select(int index)(Code)
Selects the item at the specified index in the scrolling list.
Parameters:
  index - the position of the item to select.
See Also:   java.awt.List.getSelectedItem
See Also:   java.awt.List.deselect
See Also:   java.awt.List.isIndexSelected



setMultipleMode
public void setMultipleMode(boolean b)(Code)
Sets the flag that determines whether this list allows multiple selections.
Parameters:
  b - if true then multiple selectionsare allowed; otherwise, only one item fromthe list can be selected at once.
See Also:   java.awt.List.isMultipleMode
since:
   JDK1.1



setMultipleSelections
public synchronized void setMultipleSelections(boolean b)(Code)



Fields inherited from java.awt.Component
final public static float BOTTOM_ALIGNMENT(Code)(Java Doc)
final public static float CENTER_ALIGNMENT(Code)(Java Doc)
final public static float LEFT_ALIGNMENT(Code)(Java Doc)
final static Object LOCK(Code)(Java Doc)
final public static float RIGHT_ALIGNMENT(Code)(Java Doc)
final public static float TOP_ALIGNMENT(Code)(Java Doc)
final static String actionListenerK(Code)(Java Doc)
final static String adjustmentListenerK(Code)(Java Doc)
Color background(Code)(Java Doc)
transient ComponentListener componentListener(Code)(Java Doc)
final static String componentListenerK(Code)(Java Doc)
final static String containerListenerK(Code)(Java Doc)
Cursor cursor(Code)(Java Doc)
final static boolean defaultNewEventsOnly(Code)(Java Doc)
transient Component delegate(Code)(Java Doc)
transient Component delegateSource(Code)(Java Doc)
boolean enabled(Code)(Java Doc)
long eventMask(Code)(Java Doc)
transient FocusListener focusListener(Code)(Java Doc)
final static String focusListenerK(Code)(Java Doc)
Font font(Code)(Java Doc)
Color foreground(Code)(Java Doc)
int height(Code)(Java Doc)
static int incRate(Code)(Java Doc)
static boolean isInc(Code)(Java Doc)
final static String itemListenerK(Code)(Java Doc)
transient KeyListener keyListener(Code)(Java Doc)
final static String keyListenerK(Code)(Java Doc)
Locale locale(Code)(Java Doc)
Dimension minSize(Code)(Java Doc)
transient MouseListener mouseListener(Code)(Java Doc)
final static String mouseListenerK(Code)(Java Doc)
transient MouseMotionListener mouseMotionListener(Code)(Java Doc)
final static String mouseMotionListenerK(Code)(Java Doc)
boolean newEventsOnly(Code)(Java Doc)
transient Container parent(Code)(Java Doc)
Vector popups(Code)(Java Doc)
Dimension prefSize(Code)(Java Doc)
final static String textListenerK(Code)(Java Doc)
static Timer updateTimer(Code)(Java Doc)
boolean valid(Code)(Java Doc)
boolean visible(Code)(Java Doc)
int width(Code)(Java Doc)
transient RuntimeException windowClosingException(Code)(Java Doc)
final static String windowListenerK(Code)(Java Doc)
int x(Code)(Java Doc)
transient ComponentXWindow xwindow(Code)(Java Doc)
int y(Code)(Java Doc)

Methods inherited from java.awt.Component
public boolean action(Event evt, Object what)(Code)(Java Doc)
public synchronized 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 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 void addNotify()(Code)(Java Doc)
boolean areInputMethodsEnabled()(Code)(Java Doc)
public Rectangle bounds()(Code)(Java Doc)
final void checkEnableNewEventsOnly(Object listener)(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)
String constructComponentName()(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)
ComponentXWindow createXWindow()(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)
public void doLayout()(Code)(Java Doc)
public void enable()(Code)(Java Doc)
public void enable(boolean b)(Code)(Java Doc)
final protected synchronized void enableEvents(long eventsToEnable)(Code)(Java Doc)
boolean eventEnabled(AWTEvent e)(Code)(Java Doc)
Component findFocusDelegate(Container container)(Code)(Java Doc)
public float getAlignmentX()(Code)(Java Doc)
public float getAlignmentY()(Code)(Java Doc)
public Color getBackground()(Code)(Java Doc)
public Rectangle getBounds()(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 Cursor getCursor()(Code)(Java Doc)
Component getFocusDelegate()(Code)(Java Doc)
public Font getFont()(Code)(Java Doc)
Component getFontAndColorDelegate()(Code)(Java Doc)
public FontMetrics getFontMetrics(Font font)(Code)(Java Doc)
public Color getForeground()(Code)(Java Doc)
public Graphics getGraphics()(Code)(Java Doc)
InputContext getInputContext()(Code)(Java Doc)
public Locale getLocale()(Code)(Java Doc)
public Point getLocation()(Code)(Java Doc)
public Point getLocationOnScreen()(Code)(Java Doc)
public Dimension getMaximumSize()(Code)(Java Doc)
public Dimension getMinimumSize()(Code)(Java Doc)
public String getName()(Code)(Java Doc)
Container getNativeContainer()(Code)(Java Doc)
public Container getParent()(Code)(Java Doc)
public Dimension getPreferredSize()(Code)(Java Doc)
public Dimension getSize()(Code)(Java Doc)
public Toolkit getToolkit()(Code)(Java Doc)
final public Object getTreeLock()(Code)(Java Doc)
public boolean gotFocus(Event evt, Object what)(Code)(Java Doc)
public boolean handleEvent(Event evt)(Code)(Java Doc)
public void hide()(Code)(Java Doc)
public boolean imageUpdate(Image img, int flags, 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)
static void invokeAndWait(Runnable runnable)(Code)(Java Doc)
public boolean isDisplayable()(Code)(Java Doc)
public boolean isEnabled()(Code)(Java Doc)
public boolean isFocusTraversable()(Code)(Java Doc)
public boolean isLightweight()(Code)(Java Doc)
boolean isLightweightWhenDisplayable()(Code)(Java Doc)
public boolean isOpaque()(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)
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)
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 processKeyEvent(KeyEvent e)(Code)(Java Doc)
protected void processMouseEvent(MouseEvent e)(Code)(Java Doc)
protected void processMouseMotionEvent(MouseEvent e)(Code)(Java Doc)
public synchronized 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 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 void removeNotify()(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)
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 synchronized void setCursor(Cursor cursor)(Code)(Java Doc)
public void setEnabled(boolean b)(Code)(Java Doc)
public void setFont(Font f)(Code)(Java Doc)
public void setForeground(Color c)(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 setName(String name)(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 update(Graphics g)(Code)(Java Doc)
public void validate()(Code)(Java Doc)

Methods inherited from java.lang.Object
public boolean equals(Object obj)(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.