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 / sun / awt / DrawingSurfaceInfo.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-07-08  |  382 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.