/[classpath]/classpath/javax/swing/plaf/ComponentInputMapUIResource.java
ViewVC logotype

Diff of /classpath/javax/swing/plaf/ComponentInputMapUIResource.java

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

revision 1.1 by aselkirk, Tue May 28 05:18:35 2002 UTC revision 1.2 by brawer, Mon Jun 23 13:44:46 2003 UTC
# Line 1  Line 1 
1  /* ComponentInputMapUIResource.java --  /* ComponentInputMapUIResource.java --
2     Copyright (C) 2002 Free Software Foundation, Inc.     Copyright (C) 2003 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 37  exception statement from your version. * Line 37  exception statement from your version. *
37    
38  package javax.swing.plaf;  package javax.swing.plaf;
39    
40  // Imports  import javax.swing.ComponentInputMap;
41  import javax.swing.*;  import javax.swing.JComponent;
42    
43    
44  /**  /**
45   * ComponentInputMapUIResource   * A <code>ComponentInputMap</code> that implements the {@link UIResource}
46   * @author      Andrew Selkirk   * interface to indicate that it belongs to a pluggable
47   * @version     1.0   * LookAndFeel.
48     *
49     * @see javax.swing.ComponentInputMap
50     * @see javax.swing.InputMap
51     *
52     * @author Andrew Selkirk
53     * @author Sascha Brawer (brawer@dandelis.ch)
54   */   */
55  public class ComponentInputMapUIResource extends ComponentInputMap implements UIResource {  public class ComponentInputMapUIResource
56      extends ComponentInputMap
57          //-------------------------------------------------------------    implements UIResource
58          // Initialization ---------------------------------------------  {
59          //-------------------------------------------------------------    /**
60       * Constructs a new <code>ComponentInputMapUIResource</code>.
61          /**     *
62           * Constructor ComponentInputMapUIResource     * @param component the <code>JComponent</code> associated with
63           * @param component TODO     *        this <code>InputMap</code>.
64           */     */
65          public ComponentInputMapUIResource(JComponent component) {    public ComponentInputMapUIResource(JComponent component)
66                  super(component);    {
67                  // TODO      super(component);
68          } // ComponentInputMapUIResource()    }
69    }
70    
 } // ComponentInputMapUIResource  

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

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