home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / sun / awt / DrawingSurfaceInfo.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  264 b   |  17 lines

  1. package sun.awt;
  2.  
  3. import java.awt.Rectangle;
  4. import java.awt.Shape;
  5.  
  6. public interface DrawingSurfaceInfo {
  7.    int lock();
  8.  
  9.    void unlock();
  10.  
  11.    Rectangle getBounds();
  12.  
  13.    PhysicalDrawingSurface getSurface();
  14.  
  15.    Shape getClip();
  16. }
  17.