1. /*
  2. * @(#)ComponentInputMapUIResource.java 1.3 00/02/02
  3. *
  4. * Copyright 1997-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package javax.swing.plaf;
  11. import javax.swing.ComponentInputMap;
  12. import javax.swing.JComponent;
  13. /**
  14. * A subclass of javax.swing.ComponentInputMap that implements UIResource.
  15. * UI classes which provide a ComponentInputMap should use this class.
  16. *
  17. * @version 1.3 02/02/00
  18. * @author Scott Violet
  19. */
  20. public class ComponentInputMapUIResource extends ComponentInputMap implements UIResource {
  21. public ComponentInputMapUIResource(JComponent component) {
  22. super(component);
  23. }
  24. }