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 / Win32DrawingSurface.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  295 b   |  20 lines

  1. package sun.awt;
  2.  
  3. import java.awt.image.ColorModel;
  4.  
  5. public interface Win32DrawingSurface extends PhysicalDrawingSurface {
  6.    int getHWnd();
  7.  
  8.    int getHBitmap();
  9.  
  10.    int getPBits();
  11.  
  12.    int getHDC();
  13.  
  14.    int getDepth();
  15.  
  16.    int getHPalette();
  17.  
  18.    ColorModel getColorModel();
  19. }
  20.