aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/Choice.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/awt/Choice.java')
-rw-r--r--libjava/java/awt/Choice.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/awt/Choice.java b/libjava/java/awt/Choice.java
index ab04c21..81a2a31 100644
--- a/libjava/java/awt/Choice.java
+++ b/libjava/java/awt/Choice.java
@@ -215,7 +215,7 @@ insert(String item, int index)
*
* @param item The item to remove.
*
- * @param IllegalArgumentException If the specified item doesn't exist.
+ * @exception IllegalArgumentException If the specified item doesn't exist.
*/
public synchronized void
remove(String item)
@@ -234,7 +234,7 @@ remove(String item)
*
* @param index The index of the item to remove.
*
- * @exception ArrayIndexOutOfBoundsException If the index is not valid.
+ * @exception IndexOutOfBoundsException If the index is not valid.
*/
public synchronized void
remove(int index)
@@ -325,7 +325,7 @@ getSelectedIndex()
*
* @param index The index of the row to make selected.
*
- * @param IllegalArgumentException If the specified index is invalid.
+ * @exception IllegalArgumentException If the specified index is invalid.
*/
public synchronized void
select(int index)