home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VPage / Java.bin / CLASSES.ZIP / java / awt / peer / ContainerPeer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  338 b   |  14 lines

  1. package java.awt.peer;
  2.  
  3. import java.awt.Insets;
  4.  
  5. public interface ContainerPeer extends ComponentPeer {
  6.    Insets getInsets();
  7.  
  8.    void beginValidate();
  9.  
  10.    void endValidate();
  11.  
  12.    Insets insets();
  13. }
  14.