1. /*
  2. * @(#)MetalSplitPaneUI.java 1.6 00/02/02
  3. *
  4. * Copyright 1998-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.metal;
  11. import javax.swing.*;
  12. import javax.swing.plaf.*;
  13. import javax.swing.plaf.basic.*;
  14. /**
  15. * Metal split pane.
  16. * <p>
  17. * <strong>Warning:</strong>
  18. * Serialized objects of this class will not be compatible with
  19. * future Swing releases. The current serialization support is appropriate
  20. * for short term storage or RMI between applications running the same
  21. * version of Swing. A future release of Swing will provide support for
  22. * long term persistence.
  23. *
  24. * @version 1.6 02/02/00
  25. * @author Steve Wilson
  26. */
  27. public class MetalSplitPaneUI extends BasicSplitPaneUI
  28. {
  29. /**
  30. * Creates a new MetalSplitPaneUI instance
  31. */
  32. public static ComponentUI createUI(JComponent x) {
  33. return new MetalSplitPaneUI();
  34. }
  35. /**
  36. * Creates the default divider.
  37. */
  38. public BasicSplitPaneDivider createDefaultDivider() {
  39. return new MetalSplitPaneDivider(this);
  40. }
  41. }