1 7 package java.awt.peer; 8 9 import java.awt.*; 10 11 18 public interface ContainerPeer extends ComponentPeer { 19 Insets getInsets(); 20 void beginValidate(); 21 void endValidate(); 22 void beginLayout(); 23 void endLayout(); 24 boolean isPaintPending(); 25 26 30 void cancelPendingPaint(int x, int y, int w, int h); 31 32 33 37 void restack(); 38 39 44 boolean isRestackSupported(); 45 51 Insets insets(); 52 } 53 | Popular Tags |