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.
+
+2002-11-07 Michael Koch <konqueror@gmx.de>
+
* java/awt/color/ICC_Profile.java:
Added missing constants.
* java/awt/color/ICC_ColorSpace.java
*
* @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)
*
* @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)
*
* @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)
*
* @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)
{
* @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)
{
* @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)
{
import java.io.Serializable;
/**
- * Stub implementeation.
+ * Stub implementation.
*/
public class GridBagLayout
implements Serializable, LayoutManager2
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
-
package java.awt.peer;
import java.awt.Insets;
public interface ContainerPeer extends ComponentPeer
{
-
-public abstract Insets insets();
-public abstract Insets getInsets();
-public abstract void beginValidate();
-public abstract void endValidate();
-
+ public abstract Insets insets();
+ public abstract Insets getInsets();
+ public abstract void beginValidate();
+ public abstract void endValidate();
} // interface ContainerPeer