/[classpath]/classpath/java/awt/peer/ContainerPeer.java
ViewVC logotype

Diff of /classpath/java/awt/peer/ContainerPeer.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.9.2.1 by gnu_andrew, Tue Aug 2 20:12:16 2005 UTC revision 1.9.2.2 by gnu_andrew, Sat Sep 10 15:31:46 2005 UTC
# Line 54  public interface ContainerPeer extends C Line 54  public interface ContainerPeer extends C
54    void endLayout();    void endLayout();
55    
56    boolean isPaintPending();    boolean isPaintPending();
57      
58      /**
59       * Check if this container peer can be restacked.
60       *
61       * @return true if this container peer supports being restacked, false otherwise
62       * @since 1.5
63       */
64      boolean isRestackSupported();
65    
66      /**
67       * Cancel a pending paint event on a region of this container.
68       *
69       * @param x the x co-ordinate of the region
70       * @param y the y co-ordinate of the region
71       * @param width the width of the region
72       * @param height the height of the region
73       * @since 1.5
74       */
75      void cancelPendingPaint(int x, int y, int width, int height);
76      
77      /**
78       * Restack the component peers in this container peer.
79       *
80       * @since 1.5
81       */
82      void restack();
83  } // interface ContainerPeer  } // interface ContainerPeer
84    

Legend:
Removed from v.1.9.2.1  
changed lines
  Added in v.1.9.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26