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