/[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.20 by abalkiss, Tue Jul 12 13:48:35 2005 UTC revision 1.21 by rabbit78, Wed Sep 7 16:05:14 2005 UTC
# Line 60  import javax.accessibility.AccessibleCon Line 60  import javax.accessibility.AccessibleCon
60   */   */
61  public class JWindow extends Window implements Accessible, RootPaneContainer  public class JWindow extends Window implements Accessible, RootPaneContainer
62  {  {
63      /**
64       * Provides accessibility support for <code>JWindow</code>.
65       */
66      protected class AccessibleJWindow extends Window.AccessibleAWTWindow
67      {
68        /**
69         * Creates a new instance of <code>AccessibleJWindow</code>.
70         */
71        public AccessibleJWindow()
72        {
73          super();
74          // Nothing to do here.
75        }
76      }
77    
78    private static final long serialVersionUID = 5420698392125238833L;    private static final long serialVersionUID = 5420698392125238833L;
79        
80    protected JRootPane rootPane;    protected JRootPane rootPane;
# Line 235  public class JWindow extends Window impl Line 250  public class JWindow extends Window impl
250    
251    public AccessibleContext getAccessibleContext()    public AccessibleContext getAccessibleContext()
252    {    {
253      return null;      if (accessibleContext == null)
254          accessibleContext = new AccessibleJWindow();
255        return accessibleContext;
256    }    }
257    
258    protected String paramString()    protected String paramString()

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21

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