/[classpath]/classpath/javax/swing/JWindow.java
ViewVC logotype

Diff of /classpath/javax/swing/JWindow.java

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

revision 1.11.2.2 by gnu_andrew, Sun Jan 16 15:15:13 2005 UTC revision 1.11.2.3 by gnu_andrew, Tue Jan 25 12:41:41 2005 UTC
# Line 1  Line 1 
1  /* JWindow.java --  /* JWindow.java --
2     Copyright (C) 2002, 2003, 2004  Free Software Foundation, Inc.     Copyright (C) 2002, 2003, 2004, 2005  Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 62  public class JWindow extends Window impl Line 62  public class JWindow extends Window impl
62  {  {
63    private static final long serialVersionUID = 5420698392125238833L;    private static final long serialVersionUID = 5420698392125238833L;
64        
   private boolean checking;  
     
65    protected JRootPane rootPane;    protected JRootPane rootPane;
66      protected boolean rootPaneCheckingEnabled;
67    protected AccessibleContext accessibleContext;    protected AccessibleContext accessibleContext;
68    
69    public JWindow()    public JWindow()
# Line 176  public class JWindow extends Window impl Line 175  public class JWindow extends Window impl
175    
176    protected boolean isRootPaneCheckingEnabled()    protected boolean isRootPaneCheckingEnabled()
177    {    {
178      return checking;      return rootPaneCheckingEnabled;
179    }    }
180    
181    protected void setRootPaneCheckingEnabled(boolean enabled)    protected void setRootPaneCheckingEnabled(boolean enabled)
182    {    {
183      checking = enabled;      rootPaneCheckingEnabled = enabled;
184    }    }
185    
186    public void update(Graphics g)    public void update(Graphics g)

Legend:
Removed from v.1.11.2.2  
changed lines
  Added in v.1.11.2.3

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