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