home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / awt / Component$SingleBufferStrategy.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  730 b   |  34 lines

  1. package java.awt;
  2.  
  3. import java.awt.image.BufferStrategy;
  4.  
  5. class Component$SingleBufferStrategy extends BufferStrategy {
  6.    private BufferCapabilities caps;
  7.    // $FF: synthetic field
  8.    final Component this$0;
  9.  
  10.    public Component$SingleBufferStrategy(Component var1, BufferCapabilities var2) {
  11.       this.this$0 = var1;
  12.       this.caps = var2;
  13.    }
  14.  
  15.    public BufferCapabilities getCapabilities() {
  16.       return this.caps;
  17.    }
  18.  
  19.    public Graphics getDrawGraphics() {
  20.       return this.this$0.getGraphics();
  21.    }
  22.  
  23.    public boolean contentsLost() {
  24.       return false;
  25.    }
  26.  
  27.    public boolean contentsRestored() {
  28.       return false;
  29.    }
  30.  
  31.    public void show() {
  32.    }
  33. }
  34.