diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-07 13:01:34 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-11-07 13:01:34 +0000 |
commit | 0da56f8faf07352467cbff76f7f508bd42b6fb73 (patch) | |
tree | 133aed55b1f8a1e0bd58fced7ed30ec4f3f12fc1 /libjava/java/awt/Container.java | |
parent | 5b9bf573a90e0c824489726599cbf7c5c330ddba (diff) | |
download | ppe42-gcc-0da56f8faf07352467cbff76f7f508bd42b6fb73.tar.gz ppe42-gcc-0da56f8faf07352467cbff76f7f508bd42b6fb73.zip |
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/Container.java')
-rw-r--r-- | libjava/java/awt/Container.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libjava/java/awt/Container.java b/libjava/java/awt/Container.java index c5c7c245606..d71a4bf3684 100644 --- a/libjava/java/awt/Container.java +++ b/libjava/java/awt/Container.java @@ -205,7 +205,7 @@ public class Container extends Component * * @return The same component that was added. * - * @param throws ArrayIndexOutOfBounds If the specified index is invalid. + * @throws ArrayIndexOutOfBounds If the specified index is invalid. */ public Component add(Component comp, int index) { @@ -236,7 +236,7 @@ public class Container extends Component * @param index The index in the component list to insert this child * at, or -1 to add at the end of the list. * - * @param throws ArrayIndexOutOfBounds If the specified index is invalid. + * @throws ArrayIndexOutOfBounds If the specified index is invalid. */ public void add(Component comp, Object constraints, int index) { @@ -256,7 +256,7 @@ public class Container extends Component * @param index The index in the component list to insert this child * at, or -1 to add at the end of the list. * - * @param throws ArrayIndexOutOfBounds If the specified index is invalid. + * @throws ArrayIndexOutOfBounds If the specified index is invalid. */ protected void addImpl(Component comp, Object constraints, int index) { |