1. /*
  2. * @(#)MotifSplitPaneUI.java 1.12 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.motif;
  11. import javax.swing.plaf.basic.BasicSplitPaneUI;
  12. import javax.swing.plaf.basic.BasicSplitPaneDivider;
  13. import javax.swing.plaf.*;
  14. import javax.swing.*;
  15. import java.awt.*;
  16. /**
  17. * Motif rendition of a split pane.
  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. * @version 1.12 02/02/00
  27. * @author Jeff Dinkins
  28. */
  29. public class MotifSplitPaneUI extends BasicSplitPaneUI
  30. {
  31. public MotifSplitPaneUI() {
  32. super();
  33. }
  34. /**
  35. * Creates a new MotifSplitPaneUI instance
  36. */
  37. public static ComponentUI createUI(JComponent x) {
  38. return new MotifSplitPaneUI();
  39. }
  40. /**
  41. * Creates the default divider.
  42. */
  43. public BasicSplitPaneDivider createDefaultDivider() {
  44. return new MotifSplitPaneDivider(this);
  45. }
  46. }