summaryrefslogtreecommitdiff
path: root/libjava/java/awt/Choice.java
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2002-11-07 13:01:34 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2002-11-07 13:01:34 +0000
commit0da56f8faf07352467cbff76f7f508bd42b6fb73 (patch)
tree133aed55b1f8a1e0bd58fced7ed30ec4f3f12fc1 /libjava/java/awt/Choice.java
parent5b9bf573a90e0c824489726599cbf7c5c330ddba (diff)
downloadgcc-0da56f8faf07352467cbff76f7f508bd42b6fb73.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58888 138bc75d-0d04-0410-961f-82ee72b054a4
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 ab04c21cda5..81a2a31c932 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)