<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<!--NewPage-->
<html>
<head>
<!-- Generated by javadoc on Wed Jul 28 01:21:15 GMT 1999 -->
<title>
  Class java.awt.List
</title>
</head>
<body>
<a name="_top_"></a>
<pre>
<a href="packages.html">All Packages</a>  <a href="tree.html">Class Hierarchy</a>  <a href="Package-java.awt.html">This Package</a>  <a href="java.awt.Label.html#_top_">Previous</a>  <a href="java.awt.MediaTracker.html#_top_">Next</a>  <a href="AllNames.html">Index</a></pre>
<hr>
<h1>
  Class java.awt.List
</h1>
<pre>
<a href="java.lang.Object.html#_top_">java.lang.Object</a>
   |
   +----<a href="java.awt.Component.html#_top_">java.awt.Component</a>
           |
           +----java.awt.List
</pre>
<hr>
<dl>
  <dt> public class <b>List</b>
  <dt> extends <a href="java.awt.Component.html#_top_">Component</a>
  <dt> implements <a href="java.awt.ItemSelectable.html#_top_">ItemSelectable</a>
</dl>
The <code>List</code> 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. 
 <p>
 For example, the code&nbsp;.&nbsp;.&nbsp;.
 <p>
 <hr><blockquote><pre>
 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);
 </pre></blockquote><hr>
 <p>
 where <code>cnt</code> is a container, produces the following 
 scrolling list:
 <p>
 <img src="images-awt/List-1.gif" 
 ALIGN=center HSPACE=10 VSPACE=7> 
 <p>
 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 <code>false</code>. Selecting an item causes any other 
 selected item to be automatically deselected. 
 <p>
 Beginning with Java&nbsp;1.1, the Abstract Window Toolkit 
 sends the <code>List</code> 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.)
 <p>
 When an item is selected or deselected, AWT sends an instance  
 of <code>ItemEvent</code> to the list.
 When the user double-clicks on an item in a scrolling list,  
 AWT sends an instance of <code>ActionEvent</code> 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.
 <p>
 If an application wants to perform some action based on an item 
 in this list being selected or activated, it should implement 
 <code>ItemListener</code> or <code>ActionListener</code> 
 as appropriate and register the new listener to receive 
 events from this list. 
 <p>
 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.
<p>
<dl>
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.event.ItemEvent.html#_top_">ItemEvent</a>, <a href="java.awt.event.ItemListener.html#_top_">ItemListener</a>, <a href="java.awt.event.ActionEvent.html#_top_">ActionEvent</a>, <a href="java.awt.event.ActionListener.html#_top_">ActionListener</a>
</dl>
<hr>
<a name="index"></a>
<h2>
  <img src="images/constructor-index.gif" width=275 height=38 alt="Constructor Index">
</h2>
<dl>
  <dt> <img src="images/yellow-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#List()"><b>List</b></a>()
  <dd>  Creates a new scrolling list.
  <dt> <img src="images/yellow-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#List(int)"><b>List</b></a>(int)
  <dd>  Creates a new scrolling list initialized with the specified 
 number of visible lines.
  <dt> <img src="images/yellow-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#List(int, boolean)"><b>List</b></a>(int, boolean)
  <dd>  Creates a new scrolling list initialized to display the specified 
 number of rows.
</dl>
<h2>
  <img src="images/method-index.gif" width=207 height=38 alt="Method Index">
</h2>
<dl>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#add(java.lang.String)"><b>add</b></a>(String)
  <dd>  Adds the specified item to the end of scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#add(java.lang.String, int)"><b>add</b></a>(String, int)
  <dd>  Adds the specified item to the end of the scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#addActionListener(java.awt.event.ActionListener)"><b>addActionListener</b></a>(ActionListener)
  <dd>  Adds the specified action listener to receive action events from
 this list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#addItem(java.lang.String)"><b>addItem</b></a>(String)
  <dd>  Adds the specified item to the end of scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#addItem(java.lang.String, int)"><b>addItem</b></a>(String, int)
  <dd>  Adds the specified item to the end of the scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#addItemListener(java.awt.event.ItemListener)"><b>addItemListener</b></a>(ItemListener)
  <dd>  Adds the specified item listener to receive item events from
 this list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#addNotify()"><b>addNotify</b></a>()
  <dd>  Creates the peer for the list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#allowsMultipleSelections()"><b>allowsMultipleSelections</b></a>()
  <dd>  
<b>Deprecated.</b>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#clear()"><b>clear</b></a>()
  <dd>  
<b>Deprecated.</b>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#countItems()"><b>countItems</b></a>()
  <dd>  
<b>Deprecated.</b>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#delItem(int)"><b>delItem</b></a>(int)
  <dd>  Removes the item at the specified position from this list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#delItems(int, int)"><b>delItems</b></a>(int, int)
  <dd>  
<b>Deprecated.</b>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#deselect(int)"><b>deselect</b></a>(int)
  <dd>  Deselects the item at the specified index.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getItem(int)"><b>getItem</b></a>(int)
  <dd>  Gets the item associated with the specified index.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getItemCount()"><b>getItemCount</b></a>()
  <dd>  Gets the number of items in the list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getItems()"><b>getItems</b></a>()
  <dd>  Gets the items in the list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getMinimumSize()"><b>getMinimumSize</b></a>()
  <dd>  Determines the minimum size of this scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getMinimumSize(int)"><b>getMinimumSize</b></a>(int)
  <dd>  Gets the minumum dimensions for a list with the specified
 number of rows.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getPreferredSize()"><b>getPreferredSize</b></a>()
  <dd>  Gets the preferred size of this scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getPreferredSize(int)"><b>getPreferredSize</b></a>(int)
  <dd>  Gets the preferred dimensions for a list with the specified
 number of rows.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getRows()"><b>getRows</b></a>()
  <dd>  Get the number of visible lines in this list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getSelectedIndex()"><b>getSelectedIndex</b></a>()
  <dd>  Gets the index of the selected item on the list, 
 
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getSelectedIndexes()"><b>getSelectedIndexes</b></a>()
  <dd>  Gets the selected indexes on the list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getSelectedItem()"><b>getSelectedItem</b></a>()
  <dd>  Get the selected item on this scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getSelectedItems()"><b>getSelectedItems</b></a>()
  <dd>  Get the selected items on this scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getSelectedObjects()"><b>getSelectedObjects</b></a>()
  <dd>  Returns the selected items on the list in an array of Objects.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#getVisibleIndex()"><b>getVisibleIndex</b></a>()
  <dd>  Gets the index of the item that was last made visible by 
 the method <code>makeVisible</code>.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#isIndexSelected(int)"><b>isIndexSelected</b></a>(int)
  <dd>  Determines if the specified item in this scrolling list is 
 selected.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#isMultipleMode()"><b>isMultipleMode</b></a>()
  <dd>  Determines whether this list allows multiple selections.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#isSelected(int)"><b>isSelected</b></a>(int)
  <dd>  
<b>Deprecated.</b>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#makeVisible(int)"><b>makeVisible</b></a>(int)
  <dd>  Makes the item at the specified index visible.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#minimumSize()"><b>minimumSize</b></a>()
  <dd>  
<b>Deprecated.</b>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#minimumSize(int)"><b>minimumSize</b></a>(int)
  <dd>  
<b>Deprecated.</b>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#paramString()"><b>paramString</b></a>()
  <dd>  Returns the parameter string representing the state of this 
 scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#preferredSize()"><b>preferredSize</b></a>()
  <dd>  
<b>Deprecated.</b>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#preferredSize(int)"><b>preferredSize</b></a>(int)
  <dd>  
<b>Deprecated.</b>
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#processActionEvent(java.awt.event.ActionEvent)"><b>processActionEvent</b></a>(ActionEvent)
  <dd> 
 Processes action events occurring on this component 
 by dispatching them to any registered 
 <code>ActionListener</code> objects.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#processEvent(java.awt.AWTEvent)"><b>processEvent</b></a>(AWTEvent)
  <dd>  Processes events on this scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#processItemEvent(java.awt.event.ItemEvent)"><b>processItemEvent</b></a>(ItemEvent)
  <dd> 
 Processes item events occurring on this list by
 dispatching them to any registered 
 <code>ItemListener</code> objects.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#remove(int)"><b>remove</b></a>(int)
  <dd>  Remove the item at the specified position  
 from this scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#remove(java.lang.String)"><b>remove</b></a>(String)
  <dd>  Removes the first occurrence of an item from the list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#removeActionListener(java.awt.event.ActionListener)"><b>removeActionListener</b></a>(ActionListener)
  <dd>  Removes the specified action listener so that it no longer 
 receives action events from this list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#removeAll()"><b>removeAll</b></a>()
  <dd>  Removes all items from this list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#removeItemListener(java.awt.event.ItemListener)"><b>removeItemListener</b></a>(ItemListener)
  <dd>  Removes the specified item listener so that it no longer 
 receives item events from this list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#removeNotify()"><b>removeNotify</b></a>()
  <dd>  Removes the peer for this list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#replaceItem(java.lang.String, int)"><b>replaceItem</b></a>(String, int)
  <dd>  Replaces the item at the specified index in the scrolling list
 with the new string.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#select(int)"><b>select</b></a>(int)
  <dd>  Selects the item at the specified index in the scrolling list.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#setMultipleMode(boolean)"><b>setMultipleMode</b></a>(boolean)
  <dd>  Sets the flag that determines whether this list 
 allows multiple selections.
  <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o ">
	<a href="#setMultipleSelections(boolean)"><b>setMultipleSelections</b></a>(boolean)
  <dd>  
<b>Deprecated.</b>
</dl>
<a name="constructors"></a>
<h2>
  <img src="images/constructors.gif" width=231 height=38 alt="Constructors">
</h2>
<a name="List"></a>
<a name="List()"><img src="images/yellow-ball.gif" width=12 height=12 alt=" o "></a>
<b>List</b>
<pre>
 public List()
</pre>
<dl>
  <dd> Creates a new scrolling list. Initially there are no visible 
 lines, and only one item can be selected from the list.
<p>
</dl>
<a name="List(int)"><img src="images/yellow-ball.gif" width=12 height=12 alt=" o "></a>
<b>List</b>
<pre>
 public List(int rows)
</pre>
<dl>
  <dd> Creates a new scrolling list initialized with the specified 
 number of visible lines. By default, multiple selections are
 not allowed.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> rows - the number of items to show.
  </dl></dd>
</dl>
<a name="List(int, boolean)"><img src="images/yellow-ball.gif" width=12 height=12 alt=" o "></a>
<b>List</b>
<pre>
 public List(int rows,
             boolean multipleMode)
</pre>
<dl>
  <dd> Creates a new scrolling list initialized to display the specified 
 number of rows. If the value of <code>multipleMode</code> is 
 <code>true</code>, then the user can select multiple items from  
 the list. If it is <code>false</code>, only one item at a time 
 can be selected.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> rows - the number of items to show.
    <dd> multipleMode - if <code>true</code>,
                     then multiple selections are allowed; 
                     otherwise, only one item can be selected at a time.
  </dl></dd>
</dl>
<a name="methods"></a>
<h2>
  <img src="images/methods.gif" width=151 height=38 alt="Methods">
</h2>
<a name="addNotify()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="addNotify"><b>addNotify</b></a>
<pre>
 public void addNotify()
</pre>
<dl>
  <dd> Creates the peer for the list.  The peer allows us to modify the
 list's appearance without changing its functionality.
<p>
  <dd><dl>
    <dt> <b>Overrides:</b>
    <dd> <a href="java.awt.Component.html#addNotify()">addNotify</a> in class <a href="java.awt.Component.html#_top_">Component</a>
  </dl></dd>
</dl>
<a name="removeNotify()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="removeNotify"><b>removeNotify</b></a>
<pre>
 public void removeNotify()
</pre>
<dl>
  <dd> Removes the peer for this list.  The peer allows us to modify the
 list's appearance without changing its functionality.
<p>
  <dd><dl>
    <dt> <b>Overrides:</b>
    <dd> <a href="java.awt.Component.html#removeNotify()">removeNotify</a> in class <a href="java.awt.Component.html#_top_">Component</a>
  </dl></dd>
</dl>
<a name="getItemCount()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getItemCount"><b>getItemCount</b></a>
<pre>
 public int getItemCount()
</pre>
<dl>
  <dd> Gets the number of items in the list.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> the number of items in the list.
    <dt> <b>See Also:</b>
    <dd> <a href="#getItem">getItem</a>
  </dl></dd>
</dl>
<a name="countItems()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="countItems"><b>countItems</b></a>
<pre>
 public int countItems()
</pre>
<dl>
<dd><b> Note: countItems() is deprecated.</b>
<i>As of JDK version 1.1,
 replaced by <code>getItemCount()</code>.</i>
<p>
</dl>
<a name="getItem(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getItem"><b>getItem</b></a>
<pre>
 public <a href="java.lang.String.html#_top_">String</a> getItem(int index)
</pre>
<dl>
  <dd> Gets the item associated with the specified index.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> index - the position of the item.
    <dt> <b>Returns:</b>
    <dd> an item that is associated with
                    the specified index.
    <dt> <b>See Also:</b>
    <dd> <a href="#getItemCount">getItemCount</a>
  </dl></dd>
</dl>
<a name="getItems()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getItems"><b>getItems</b></a>
<pre>
 public synchronized <a href="java.lang.String.html#_top_">String</a>[] getItems()
</pre>
<dl>
  <dd> Gets the items in the list.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> a string array containing items of the list.
    <dt> <b>See Also:</b>
    <dd> <a href="#select">select</a>, <a href="#deselect">deselect</a>, <a href="#isIndexSelected">isIndexSelected</a>
  </dl></dd>
</dl>
<a name="add(java.lang.String)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="add"><b>add</b></a>
<pre>
 public void add(<a href="java.lang.String.html#_top_">String</a> item)
</pre>
<dl>
  <dd> Adds the specified item to the end of scrolling list.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> item - the item to be added.
  </dl></dd>
</dl>
<a name="addItem(java.lang.String)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="addItem"><b>addItem</b></a>
<pre>
 public void addItem(<a href="java.lang.String.html#_top_">String</a> item)
</pre>
<dl>
  <dd> Adds the specified item to the end of scrolling list.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> item - the item to be added.
  </dl></dd>
</dl>
<a name="add(java.lang.String, int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="add"><b>add</b></a>
<pre>
 public void add(<a href="java.lang.String.html#_top_">String</a> item,
                 int index)
</pre>
<dl>
  <dd> Adds the specified item to the end of the scrolling list.
 The index is zero-based. If value of the index is 
 <code>-1</code> then the item is added to the end. 
 If value of the index is greater than the number of 
 items in the list, the item is added at the end.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> item - the item to be added.
    <dd> index - the position at which to add the item.
  </dl></dd>
</dl>
<a name="addItem(java.lang.String, int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="addItem"><b>addItem</b></a>
<pre>
 public synchronized void addItem(<a href="java.lang.String.html#_top_">String</a> item,
                                  int index)
</pre>
<dl>
  <dd> Adds the specified item to the end of the scrolling list.
 The index is zero-based. If value of the index is 
 <code>-1</code> then the item is added to the end. 
 If value of the index is greater than the number of 
 items in the list, the item is added at the end.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> item - the item to be added.
    <dd> index - the position at which to add the item.
  </dl></dd>
</dl>
<a name="replaceItem(java.lang.String, int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="replaceItem"><b>replaceItem</b></a>
<pre>
 public synchronized void replaceItem(<a href="java.lang.String.html#_top_">String</a> newValue,
                                      int index)
</pre>
<dl>
  <dd> Replaces the item at the specified index in the scrolling list
 with the new string.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> newValue - a new string to replace an existing item.
    <dd> index - the position of the item to replace.
  </dl></dd>
</dl>
<a name="removeAll()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="removeAll"><b>removeAll</b></a>
<pre>
 public void removeAll()
</pre>
<dl>
  <dd> Removes all items from this list.
<p>
  <dd><dl>
    <dt> <b>See Also:</b>
    <dd> <a href="#remove">remove</a>, <a href="#delItems">delItems</a>
  </dl></dd>
</dl>
<a name="clear()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="clear"><b>clear</b></a>
<pre>
 public synchronized void clear()
</pre>
<dl>
<dd><b> Note: clear() is deprecated.</b>
<i>As of JDK version 1.1,
 replaced by <code>removeAll()</code>.</i>
<p>
</dl>
<a name="remove(java.lang.String)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="remove"><b>remove</b></a>
<pre>
 public synchronized void remove(<a href="java.lang.String.html#_top_">String</a> item)
</pre>
<dl>
  <dd> Removes the first occurrence of an item from the list.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> item - the item to remove from the list.
    <dt> <b>Throws:</b> <a href="java.lang.IllegalArgumentException.html#_top_">IllegalArgumentException</a>
    <dd> if the item doesn't exist in the list.
  </dl></dd>
</dl>
<a name="remove(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="remove"><b>remove</b></a>
<pre>
 public void remove(int position)
</pre>
<dl>
  <dd> Remove the item at the specified position  
 from this scrolling list.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> position - the index of the item to delete.
    <dt> <b>See Also:</b>
    <dd> <a href="#add(String, int)">add</a>
  </dl></dd>
</dl>
<a name="delItem(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="delItem"><b>delItem</b></a>
<pre>
 public void delItem(int position)
</pre>
<dl>
  <dd> Removes the item at the specified position from this list.
<p>
</dl>
<a name="getSelectedIndex()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getSelectedIndex"><b>getSelectedIndex</b></a>
<pre>
 public synchronized int getSelectedIndex()
</pre>
<dl>
  <dd> Gets the index of the selected item on the list,
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> the index of the selected item, or
                     <code>-1</code> if no item is selected,
                     or if more that one item is selected.
    <dt> <b>See Also:</b>
    <dd> <a href="#select">select</a>, <a href="#deselect">deselect</a>, <a href="#isIndexSelected">isIndexSelected</a>
  </dl></dd>
</dl>
<a name="getSelectedIndexes()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getSelectedIndexes"><b>getSelectedIndexes</b></a>
<pre>
 public synchronized int[] getSelectedIndexes()
</pre>
<dl>
  <dd> Gets the selected indexes on the list.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> an array of the selected indexes
                            of this scrolling list.
    <dt> <b>See Also:</b>
    <dd> <a href="#select">select</a>, <a href="#deselect">deselect</a>, <a href="#isIndexSelected">isIndexSelected</a>
  </dl></dd>
</dl>
<a name="getSelectedItem()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getSelectedItem"><b>getSelectedItem</b></a>
<pre>
 public synchronized <a href="java.lang.String.html#_top_">String</a> getSelectedItem()
</pre>
<dl>
  <dd> Get the selected item on this scrolling list.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> the selected item on the list,
                     or null if no item is selected.
    <dt> <b>See Also:</b>
    <dd> <a href="#select">select</a>, <a href="#deselect">deselect</a>, <a href="#isIndexSelected">isIndexSelected</a>
  </dl></dd>
</dl>
<a name="getSelectedItems()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getSelectedItems"><b>getSelectedItems</b></a>
<pre>
 public synchronized <a href="java.lang.String.html#_top_">String</a>[] getSelectedItems()
</pre>
<dl>
  <dd> Get the selected items on this scrolling list.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> an array of the selected items
                            on this scrolling list.
    <dt> <b>See Also:</b>
    <dd> <a href="#select">select</a>, <a href="#deselect">deselect</a>, <a href="#isIndexSelected">isIndexSelected</a>
  </dl></dd>
</dl>
<a name="getSelectedObjects()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getSelectedObjects"><b>getSelectedObjects</b></a>
<pre>
 public <a href="java.lang.Object.html#_top_">Object</a>[] getSelectedObjects()
</pre>
<dl>
  <dd> Returns the selected items on the list in an array of Objects.
<p>
  <dd><dl>
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.ItemSelectable.html#_top_">ItemSelectable</a>
  </dl></dd>
</dl>
<a name="select(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="select"><b>select</b></a>
<pre>
 public void select(int index)
</pre>
<dl>
  <dd> Selects the item at the specified index in the scrolling list.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> index - the position of the item to select.
    <dt> <b>See Also:</b>
    <dd> <a href="#getSelectedItem">getSelectedItem</a>, <a href="#deselect">deselect</a>, <a href="#isIndexSelected">isIndexSelected</a>
  </dl></dd>
</dl>
<a name="deselect(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="deselect"><b>deselect</b></a>
<pre>
 public synchronized void deselect(int index)
</pre>
<dl>
  <dd> Deselects the item at the specified index.
 <p>
 If the item at the specified index is not selected, or if the 
 index is out of range, then the operation is ignored.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> index - the position of the item to deselect.
    <dt> <b>See Also:</b>
    <dd> <a href="#select">select</a>, <a href="#getSelectedItem">getSelectedItem</a>, <a href="#isIndexSelected">isIndexSelected</a>
  </dl></dd>
</dl>
<a name="isIndexSelected(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="isIndexSelected"><b>isIndexSelected</b></a>
<pre>
 public boolean isIndexSelected(int index)
</pre>
<dl>
  <dd> Determines if the specified item in this scrolling list is 
 selected.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> index - the item to be checked.
    <dt> <b>Returns:</b>
    <dd> <code>true</code> if the specified item has been
                       selected; <code>false</code> otherwise.
    <dt> <b>See Also:</b>
    <dd> <a href="#select">select</a>, <a href="#deselect">deselect</a>
  </dl></dd>
</dl>
<a name="isSelected(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="isSelected"><b>isSelected</b></a>
<pre>
 public boolean isSelected(int index)
</pre>
<dl>
<dd><b> Note: isSelected() is deprecated.</b>
<i>As of JDK version 1.1,
 replaced by <code>isIndexSelected(int)</code>.</i>
<p>
</dl>
<a name="getRows()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getRows"><b>getRows</b></a>
<pre>
 public int getRows()
</pre>
<dl>
  <dd> Get the number of visible lines in this list.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> the number of visible lines in this scrolling list.
  </dl></dd>
</dl>
<a name="isMultipleMode()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="isMultipleMode"><b>isMultipleMode</b></a>
<pre>
 public boolean isMultipleMode()
</pre>
<dl>
  <dd> Determines whether this list allows multiple selections.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> <code>true</code> if this list allows multiple
                 selections; otherwise, <code>false</code>.
    <dt> <b>See Also:</b>
    <dd> <a href="#setMultipleMode">setMultipleMode</a>
  </dl></dd>
</dl>
<a name="allowsMultipleSelections()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="allowsMultipleSelections"><b>allowsMultipleSelections</b></a>
<pre>
 public boolean allowsMultipleSelections()
</pre>
<dl>
<dd><b> Note: allowsMultipleSelections() is deprecated.</b>
<i>As of JDK version 1.1,
 replaced by <code>isMultipleMode()</code>.</i>
<p>
</dl>
<a name="setMultipleMode(boolean)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="setMultipleMode"><b>setMultipleMode</b></a>
<pre>
 public void setMultipleMode(boolean b)
</pre>
<dl>
  <dd> Sets the flag that determines whether this list 
 allows multiple selections.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> b - if <code>true</code> then multiple selections
                      are allowed; otherwise, only one item from
                      the list can be selected at once.
    <dt> <b>See Also:</b>
    <dd> <a href="#isMultipleMode">isMultipleMode</a>
  </dl></dd>
</dl>
<a name="setMultipleSelections(boolean)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="setMultipleSelections"><b>setMultipleSelections</b></a>
<pre>
 public synchronized void setMultipleSelections(boolean b)
</pre>
<dl>
<dd><b> Note: setMultipleSelections() is deprecated.</b>
<i>As of JDK version 1.1,
 replaced by <code>setMultipleMode(boolean)</code>.</i>
<p>
</dl>
<a name="getVisibleIndex()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getVisibleIndex"><b>getVisibleIndex</b></a>
<pre>
 public int getVisibleIndex()
</pre>
<dl>
  <dd> Gets the index of the item that was last made visible by 
 the method <code>makeVisible</code>.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> the index of the item that was last made visible.
    <dt> <b>See Also:</b>
    <dd> <a href="#makeVisible">makeVisible</a>
  </dl></dd>
</dl>
<a name="makeVisible(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="makeVisible"><b>makeVisible</b></a>
<pre>
 public synchronized void makeVisible(int index)
</pre>
<dl>
  <dd> Makes the item at the specified index visible.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> index - the position of the item.
    <dt> <b>See Also:</b>
    <dd> <a href="#getVisibleIndex">getVisibleIndex</a>
  </dl></dd>
</dl>
<a name="getPreferredSize(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getPreferredSize"><b>getPreferredSize</b></a>
<pre>
 public <a href="java.awt.Dimension.html#_top_">Dimension</a> getPreferredSize(int rows)
</pre>
<dl>
  <dd> Gets the preferred dimensions for a list with the specified
 number of rows.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> rows - number of rows in the list.
    <dt> <b>Returns:</b>
    <dd> the preferred dimensions for displaying this scrolling list.
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.Component.html#getPreferredSize">getPreferredSize</a>
  </dl></dd>
</dl>
<a name="preferredSize(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="preferredSize"><b>preferredSize</b></a>
<pre>
 public <a href="java.awt.Dimension.html#_top_">Dimension</a> preferredSize(int rows)
</pre>
<dl>
<dd><b> Note: preferredSize() is deprecated.</b>
<i>As of JDK version 1.1,
 replaced by <code>getPreferredSize(int)</code>.</i>
<p>
</dl>
<a name="getPreferredSize()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getPreferredSize"><b>getPreferredSize</b></a>
<pre>
 public <a href="java.awt.Dimension.html#_top_">Dimension</a> getPreferredSize()
</pre>
<dl>
  <dd> Gets the preferred size of this scrolling list.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> the preferred dimensions for displaying this scrolling list.
    <dt> <b>Overrides:</b>
    <dd> <a href="java.awt.Component.html#getPreferredSize()">getPreferredSize</a> in class <a href="java.awt.Component.html#_top_">Component</a>
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.Component.html#getPreferredSize">getPreferredSize</a>
  </dl></dd>
</dl>
<a name="preferredSize()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="preferredSize"><b>preferredSize</b></a>
<pre>
 public <a href="java.awt.Dimension.html#_top_">Dimension</a> preferredSize()
</pre>
<dl>
<dd><b> Note: preferredSize() is deprecated.</b>
<i>As of JDK version 1.1,
 replaced by <code>getPreferredSize()</code>.</i>
<p>
  <dd><dl>
    <dt> <b>Overrides:</b>
    <dd> <a href="java.awt.Component.html#preferredSize()">preferredSize</a> in class <a href="java.awt.Component.html#_top_">Component</a>
  </dl></dd>
</dl>
<a name="getMinimumSize(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getMinimumSize"><b>getMinimumSize</b></a>
<pre>
 public <a href="java.awt.Dimension.html#_top_">Dimension</a> getMinimumSize(int rows)
</pre>
<dl>
  <dd> Gets the minumum dimensions for a list with the specified
 number of rows.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> rows - number of rows in the list.
    <dt> <b>Returns:</b>
    <dd> the minimum dimensions for displaying this scrolling list.
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.Component.html#getMinimumSize">getMinimumSize</a>
  </dl></dd>
</dl>
<a name="minimumSize(int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="minimumSize"><b>minimumSize</b></a>
<pre>
 public <a href="java.awt.Dimension.html#_top_">Dimension</a> minimumSize(int rows)
</pre>
<dl>
<dd><b> Note: minimumSize() is deprecated.</b>
<i>As of JDK version 1.1,
 replaced by <code>getMinimumSize(int)</code>.</i>
<p>
</dl>
<a name="getMinimumSize()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="getMinimumSize"><b>getMinimumSize</b></a>
<pre>
 public <a href="java.awt.Dimension.html#_top_">Dimension</a> getMinimumSize()
</pre>
<dl>
  <dd> Determines the minimum size of this scrolling list.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> the minimum dimensions needed
                        to display this scrolling list.
    <dt> <b>Overrides:</b>
    <dd> <a href="java.awt.Component.html#getMinimumSize()">getMinimumSize</a> in class <a href="java.awt.Component.html#_top_">Component</a>
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.Component.html#getMinimumSize()">getMinimumSize</a>
  </dl></dd>
</dl>
<a name="minimumSize()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="minimumSize"><b>minimumSize</b></a>
<pre>
 public <a href="java.awt.Dimension.html#_top_">Dimension</a> minimumSize()
</pre>
<dl>
<dd><b> Note: minimumSize() is deprecated.</b>
<i>As of JDK version 1.1,
 replaced by <code>getMinimumSize()</code>.</i>
<p>
  <dd><dl>
    <dt> <b>Overrides:</b>
    <dd> <a href="java.awt.Component.html#minimumSize()">minimumSize</a> in class <a href="java.awt.Component.html#_top_">Component</a>
  </dl></dd>
</dl>
<a name="addItemListener(java.awt.event.ItemListener)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="addItemListener"><b>addItemListener</b></a>
<pre>
 public synchronized void addItemListener(<a href="java.awt.event.ItemListener.html#_top_">ItemListener</a> l)
</pre>
<dl>
  <dd> Adds the specified item listener to receive item events from
 this list.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> l - the item listener.
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.event.ItemEvent.html#_top_">ItemEvent</a>, <a href="java.awt.event.ItemListener.html#_top_">ItemListener</a>, <a href="#removeItemListener">removeItemListener</a>
  </dl></dd>
</dl>
<a name="removeItemListener(java.awt.event.ItemListener)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="removeItemListener"><b>removeItemListener</b></a>
<pre>
 public synchronized void removeItemListener(<a href="java.awt.event.ItemListener.html#_top_">ItemListener</a> l)
</pre>
<dl>
  <dd> Removes the specified item listener so that it no longer 
 receives item events from this list.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> l - the item listener.
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.event.ItemEvent.html#_top_">ItemEvent</a>, <a href="java.awt.event.ItemListener.html#_top_">ItemListener</a>, <a href="#addItemListener">addItemListener</a>
  </dl></dd>
</dl>
<a name="addActionListener(java.awt.event.ActionListener)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="addActionListener"><b>addActionListener</b></a>
<pre>
 public synchronized void addActionListener(<a href="java.awt.event.ActionListener.html#_top_">ActionListener</a> l)
</pre>
<dl>
  <dd> Adds the specified action listener to receive action events from
 this list. Action events occur when a user double-clicks
 on a list item.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> l - the action listener.
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.event.ActionEvent.html#_top_">ActionEvent</a>, <a href="java.awt.event.ActionListener.html#_top_">ActionListener</a>, <a href="#removeActionListener">removeActionListener</a>
  </dl></dd>
</dl>
<a name="removeActionListener(java.awt.event.ActionListener)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="removeActionListener"><b>removeActionListener</b></a>
<pre>
 public synchronized void removeActionListener(<a href="java.awt.event.ActionListener.html#_top_">ActionListener</a> l)
</pre>
<dl>
  <dd> 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.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> l - the action listener.
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.event.ActionEvent.html#_top_">ActionEvent</a>, <a href="java.awt.event.ActionListener.html#_top_">ActionListener</a>, <a href="#addActionListener">addActionListener</a>
  </dl></dd>
</dl>
<a name="processEvent(java.awt.AWTEvent)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="processEvent"><b>processEvent</b></a>
<pre>
 protected void processEvent(<a href="java.awt.AWTEvent.html#_top_">AWTEvent</a> e)
</pre>
<dl>
  <dd> Processes events on this scrolling list. If an event is 
 an instance of <code>ItemEvent</code>, it invokes the 
 <code>processItemEvent</code> method. Else, if the 
 event is an instance of <code>ActionEvent</code>, 
 it invokes <code>processActionEvent</code>.
 If the event is not an item event or an action event,
 it invokes <code>processEvent</code> on the superclass.
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> e - the event.
    <dt> <b>Overrides:</b>
    <dd> <a href="java.awt.Component.html#processEvent(java.awt.AWTEvent)">processEvent</a> in class <a href="java.awt.Component.html#_top_">Component</a>
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.event.ActionEvent.html#_top_">ActionEvent</a>, <a href="java.awt.event.ItemEvent.html#_top_">ItemEvent</a>, <a href="#processActionEvent">processActionEvent</a>, <a href="#processItemEvent">processItemEvent</a>
  </dl></dd>
</dl>
<a name="processItemEvent(java.awt.event.ItemEvent)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="processItemEvent"><b>processItemEvent</b></a>
<pre>
 protected void processItemEvent(<a href="java.awt.event.ItemEvent.html#_top_">ItemEvent</a> e)
</pre>
<dl>
  <dd> Processes item events occurring on this list by
 dispatching them to any registered 
 <code>ItemListener</code> objects. 
 <p>
 This method is not called unless item events are 
 enabled for this component. Item events are enabled 
 when one of the following occurs:
 <p><ul>
 <li>An <code>ItemListener</code> object is registered 
 via <code>addItemListener</code>.
 <li>Item events are enabled via <code>enableEvents</code>.
 </ul>
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> e - the item event.
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.event.ItemEvent.html#_top_">ItemEvent</a>, <a href="java.awt.event.ItemListener.html#_top_">ItemListener</a>, <a href="#addItemListener">addItemListener</a>, <a href="java.awt.Component.html#enableEvents">enableEvents</a>
  </dl></dd>
</dl>
<a name="processActionEvent(java.awt.event.ActionEvent)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="processActionEvent"><b>processActionEvent</b></a>
<pre>
 protected void processActionEvent(<a href="java.awt.event.ActionEvent.html#_top_">ActionEvent</a> e)
</pre>
<dl>
  <dd> Processes action events occurring on this component 
 by dispatching them to any registered 
 <code>ActionListener</code> objects.
 <p>
 This method is not called unless action events are 
 enabled for this component. Action events are enabled 
 when one of the following occurs:
 <p><ul>
 <li>An <code>ActionListener</code> object is registered 
 via <code>addActionListener</code>.
 <li>Action events are enabled via <code>enableEvents</code>.
 </ul>
<p>
  <dd><dl>
    <dt> <b>Parameters:</b>
    <dd> e - the action event.
    <dt> <b>See Also:</b>
    <dd> <a href="java.awt.event.ActionEvent.html#_top_">ActionEvent</a>, <a href="java.awt.event.ActionListener.html#_top_">ActionListener</a>, <a href="#addActionListener">addActionListener</a>, <a href="java.awt.Component.html#enableEvents">enableEvents</a>
  </dl></dd>
</dl>
<a name="paramString()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="paramString"><b>paramString</b></a>
<pre>
 protected <a href="java.lang.String.html#_top_">String</a> paramString()
</pre>
<dl>
  <dd> Returns the parameter string representing the state of this 
 scrolling list. This string is useful for debugging.
<p>
  <dd><dl>
    <dt> <b>Returns:</b>
    <dd> the parameter string of this scrolling list.
    <dt> <b>Overrides:</b>
    <dd> <a href="java.awt.Component.html#paramString()">paramString</a> in class <a href="java.awt.Component.html#_top_">Component</a>
  </dl></dd>
</dl>
<a name="delItems(int, int)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a>
<a name="delItems"><b>delItems</b></a>
<pre>
 public synchronized void delItems(int start,
                                   int end)
</pre>
<dl>
<dd><b> Note: delItems() is deprecated.</b>
<i>As of JDK version 1.1,
 Not for public use in the future.
 This method is expected to be retained only as a package
 private method.</i>
<p>
</dl>
<hr>
<pre>
<a href="packages.html">All Packages</a>  <a href="tree.html">Class Hierarchy</a>  <a href="Package-java.awt.html">This Package</a>  <a href="java.awt.Label.html#_top_">Previous</a>  <a href="java.awt.MediaTracker.html#_top_">Next</a>  <a href="AllNames.html">Index</a></pre>
</body>
</html>
