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