home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / NETSCAP4.06 / CP32E406.EXE / nav40.z / java40.jar / java / awt / peer / ContainerPeer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-13  |  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.