diff options
Diffstat (limited to 'libjava/classpath/java/awt/peer/ContainerPeer.java')
-rw-r--r-- | libjava/classpath/java/awt/peer/ContainerPeer.java | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/libjava/classpath/java/awt/peer/ContainerPeer.java b/libjava/classpath/java/awt/peer/ContainerPeer.java index 76673a1..497abdc 100644 --- a/libjava/classpath/java/awt/peer/ContainerPeer.java +++ b/libjava/classpath/java/awt/peer/ContainerPeer.java @@ -54,10 +54,10 @@ public interface ContainerPeer extends ComponentPeer void endLayout(); boolean isPaintPending(); - + /** * Check if this container peer can be restacked. - * + * * @return true if this container peer supports being restacked, false otherwise * @since 1.5 */ @@ -65,7 +65,7 @@ public interface ContainerPeer extends ComponentPeer /** * Cancel a pending paint event on a region of this container. - * + * * @param x the x co-ordinate of the region * @param y the y co-ordinate of the region * @param width the width of the region @@ -73,12 +73,11 @@ public interface ContainerPeer extends ComponentPeer * @since 1.5 */ void cancelPendingPaint(int x, int y, int width, int height); - + /** * Restack the component peers in this container peer. - * + * * @since 1.5 */ void restack(); -} // interface ContainerPeer - +} // interface ContainerPeer |