home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / awt / GraphicsDevice.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  740 b   |  24 lines

  1. package java.awt;
  2.  
  3. public abstract class GraphicsDevice {
  4.    public static final int TYPE_RASTER_SCREEN = 0;
  5.    public static final int TYPE_PRINTER = 1;
  6.    public static final int TYPE_IMAGE_BUFFER = 2;
  7.  
  8.    protected GraphicsDevice() {
  9.    }
  10.  
  11.    public abstract int getType();
  12.  
  13.    public abstract String getIDstring();
  14.  
  15.    public abstract GraphicsConfiguration[] getConfigurations();
  16.  
  17.    public abstract GraphicsConfiguration getDefaultConfiguration();
  18.  
  19.    public GraphicsConfiguration getBestConfiguration(GraphicsConfigTemplate var1) {
  20.       GraphicsConfiguration[] var2 = this.getConfigurations();
  21.       return var1.getBestConfiguration(var2);
  22.    }
  23. }
  24.