1. /*
  2. * @(#)InputMapUIResource.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.InputMap;
  9. /**
  10. * A subclass of javax.swing.InputMap that implements UIResource.
  11. * UI classes which provide a InputMap should use this class.
  12. *
  13. * @version 1.6 12/19/03
  14. * @author Scott Violet
  15. */
  16. public class InputMapUIResource extends InputMap implements UIResource {
  17. public InputMapUIResource() {
  18. }
  19. }