1. /*
  2. * @(#)DimensionUIResource.java 1.8 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 java.awt.Dimension;
  12. import javax.swing.plaf.UIResource;
  13. /*
  14. * A subclass of Dimension that implements UIResource. UI
  15. * classes that use Dimension values for default properties
  16. * should use this class.
  17. * <p>
  18. * <strong>Warning:</strong>
  19. * Serialized objects of this class will not be compatible with
  20. * future Swing releases. The current serialization support is appropriate
  21. * for short term storage or RMI between applications running the same
  22. * version of Swing. A future release of Swing will provide support for
  23. * long term persistence.
  24. *
  25. * @see javax.swing.plaf.UIResource
  26. * @version 1.8 02/02/00
  27. * @author Amy Fowler
  28. *
  29. */
  30. public class DimensionUIResource extends Dimension implements UIResource
  31. {
  32. public DimensionUIResource(int width, int height) {
  33. super(width, height);
  34. }
  35. }