1. /*
  2. * @(#)InsetsUIResource.java 1.11 03/01/23
  3. *
  4. * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package javax.swing.plaf;
  8. import java.awt.Insets;
  9. import javax.swing.plaf.UIResource;
  10. /*
  11. * A subclass of Insets that implements UIResource. UI
  12. * classes that use Insets values for default properties
  13. * should use this class.
  14. * <p>
  15. * <strong>Warning:</strong>
  16. * Serialized objects of this class will not be compatible with
  17. * future Swing releases. The current serialization support is
  18. * appropriate for short term storage or RMI between applications running
  19. * the same version of Swing. As of 1.4, support for long term storage
  20. * of all JavaBeans<sup><font size="-2">TM</font></sup>
  21. * has been added to the <code>java.beans</code> package.
  22. * Please see {@link java.beans.XMLEncoder}.
  23. *
  24. * @see javax.swing.plaf.UIResource
  25. * @version 1.11 01/23/03
  26. * @author Amy Fowler
  27. *
  28. */
  29. public class InsetsUIResource extends Insets implements UIResource
  30. {
  31. public InsetsUIResource(int top, int left, int bottom, int right) {
  32. super(top, left, bottom, right);
  33. }
  34. }