home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 May / Disc 2 / PCU0503CD2.iso / Crystal / 3rdparty / JavaVM / Plug-in / jplugin.exe / rt.jar / java / awt / peer / ContainerPeer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-16  |  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.