home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / awt / peer / ContainerPeer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  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.