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; 11 import javax.swing.JComponent; 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 implements UIResource { 22 public ComponentInputMapUIResource(JComponent component) { 23 super(component); 24 } 25 } 26