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. package javax.swing.plaf;
  8. import javax.swing.ComponentInputMap;
  9. import javax.swing.JComponent;
  10. /**
  11. * A subclass of javax.swing.ComponentInputMap that implements UIResource.
  12. * UI classes which provide a ComponentInputMap should use this class.
  13. *
  14. * @version 1.6 12/19/03
  15. * @author Scott Violet
  16. */
  17. public class ComponentInputMapUIResource extends ComponentInputMap implements UIResource {
  18. public ComponentInputMapUIResource(JComponent component) {
  19. super(component);
  20. }
  21. }