/[classpath]/classpath/gnu/java/awt/GLightweightPeer.java
ViewVC logotype

Diff of /classpath/gnu/java/awt/GLightweightPeer.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by mark, Tue Jan 22 22:26:56 2002 UTC revision 1.3 by cbj, Wed Feb 26 02:52:01 2003 UTC
# Line 37  exception statement from your version. * Line 37  exception statement from your version. *
37  package gnu.java.awt;  package gnu.java.awt;
38    
39  import java.awt.*;  import java.awt.*;
40    import java.awt.event.PaintEvent;
41  import java.awt.peer.*;  import java.awt.peer.*;
42  import java.awt.image.*;  import java.awt.image.*;
43    
# Line 111  public class GLightweightPeer implements Line 112  public class GLightweightPeer implements
112    
113    public void hide() {}    public void hide() {}
114    
115      public boolean isFocusable()
116      {
117        return false;
118      }
119    
120    public boolean isFocusTraversable()    public boolean isFocusTraversable()
121    {    {
122      return false;      return false;
# Line 140  public class GLightweightPeer implements Line 146  public class GLightweightPeer implements
146    
147    public void requestFocus() {}    public void requestFocus() {}
148    
149      public boolean requestFocus(java.awt.Component source, boolean bool1, boolean bool2, long x) { return false; }
150    
151    public void reshape(int x, int y, int width, int height) {}    public void reshape(int x, int y, int width, int height) {}
152    
153    public void setBackground(Color color) {}    public void setBackground(Color color) {}
# Line 164  public class GLightweightPeer implements Line 172  public class GLightweightPeer implements
172    {    {
173      return null;      return null;
174    }    }
175    
176      public boolean isObscured() { return false; }
177    
178      public boolean canDetermineObscurity() { return false; }
179    
180      public void coalescePaintEvent(PaintEvent e) { }
181    
182      public void updateCursorImmediately() { }
183    
184      public VolatileImage createVolatileImage(int width, int height)
185      {
186        return null;
187      }
188    
189      public boolean handlesWheelScrolling() { return false; }
190    
191      public void createBuffers(int x, java.awt.BufferCapabilities capabilities)
192        throws java.awt.AWTException { }
193    
194      public java.awt.Image getBackBuffer() { return null; }
195    
196      public void flip(java.awt.BufferCapabilities.FlipContents contents) { }
197    
198      public void destroyBuffers() { }
199  }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26