diff options
Diffstat (limited to 'libjava/java/awt/List.java')
-rw-r--r-- | libjava/java/awt/List.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libjava/java/awt/List.java b/libjava/java/awt/List.java index 47177edc7a0..8fbbc07720e 100644 --- a/libjava/java/awt/List.java +++ b/libjava/java/awt/List.java @@ -1,5 +1,5 @@ /* List.java -- A listbox widget - Copyright (C) 1999, 2002 Free Software Foundation, Inc. + Copyright (C) 1999, 2002, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -45,6 +45,7 @@ import java.awt.event.ItemListener; import java.awt.peer.ListPeer; import java.util.EventListener; import java.util.Vector; + import javax.accessibility.Accessible; /** @@ -129,7 +130,7 @@ List() * Initializes a new instance of <code>List</code> with the specified * number of visible lines and multi-select disabled. * - * @param lines The number of visible lines in the list. + * @param rows The number of visible rows in the list. * * @exception HeadlessException If GraphicsEnvironment.isHeadless() is true. */ @@ -145,7 +146,7 @@ List(int rows) * Initializes a new instance of <code>List</code> with the specified * number of lines and the specified multi-select setting. * - * @param lines The number of visible lines in the list. + * @param rows The number of visible rows in the list. * @param multipleMode <code>true</code> if multiple lines can be selected * simultaneously, <code>false</code> otherwise. * |