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
This commit is contained in:
Michael Koch
2002-11-07 13:01:34 +00:00
committed by Michael Koch
parent c2905f7b49
commit 82396c2a26
5 changed files with 20 additions and 14 deletions
+4 -7
View File
@@ -35,18 +35,15 @@ this exception to your version of the library, but you are not
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