KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > swing > plaf > ComponentInputMapUIResource


1 /*
2  * @(#)ComponentInputMapUIResource.java 1.6 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package javax.swing.plaf;
9
10 import javax.swing.ComponentInputMap JavaDoc;
11 import javax.swing.JComponent JavaDoc;
12
13
14 /**
15  * A subclass of javax.swing.ComponentInputMap that implements UIResource.
16  * UI classes which provide a ComponentInputMap should use this class.
17  *
18  * @version 1.6 12/19/03
19  * @author Scott Violet
20  */

21 public class ComponentInputMapUIResource extends ComponentInputMap JavaDoc implements UIResource JavaDoc {
22     public ComponentInputMapUIResource(JComponent JavaDoc component) {
23     super(component);
24     }
25 }
26
Popular Tags