aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/Choice.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2002-11-07 13:01:34 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2002-11-07 13:01:34 +0000
commit82396c2a26f207479b3ccfcb2c51852b22013abd (patch)
tree133aed55b1f8a1e0bd58fced7ed30ec4f3f12fc1 /libjava/java/awt/Choice.java
parentc2905f7b49c8925ce087542a4c34fc96fc834f64 (diff)
downloadgcc-82396c2a26f207479b3ccfcb2c51852b22013abd.zip
gcc-82396c2a26f207479b3ccfcb2c51852b22013abd.tar.gz
gcc-82396c2a26f207479b3ccfcb2c51852b22013abd.tar.bz2
Choice.java, [...]: Fixed documentation.
2002-11-07 Michael Koch <konqueror@gmx.de> * java/awt/Choice.java, java/awt/Container.java, java/awt/GridBagLayout.java: Fixed documentation. * java/awt/peer/ContainerPeer.java: Reindented. From-SVN: r58888
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)