1. /*
  2. * @(#)MotifSeparatorUI.java 1.18 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.*;
  12. import java.awt.Color;
  13. import java.awt.Dimension;
  14. import java.awt.Graphics;
  15. import java.awt.Insets;
  16. import java.awt.Rectangle;
  17. import javax.swing.plaf.*;
  18. import javax.swing.plaf.basic.BasicSeparatorUI;
  19. /**
  20. * A Motif L&F implementation of SeparatorUI. This implementation
  21. * is a "combined" view/controller.
  22. * <p>
  23. * <strong>Warning:</strong>
  24. * Serialized objects of this class will not be compatible with
  25. * future Swing releases. The current serialization support is appropriate
  26. * for short term storage or RMI between applications running the same
  27. * version of Swing. A future release of Swing will provide support for
  28. * long term persistence.
  29. *
  30. * @version 1.18 02/02/00
  31. * @author Georges Saab
  32. * @author Jeff Shapiro
  33. */
  34. public class MotifSeparatorUI extends BasicSeparatorUI
  35. {
  36. public static ComponentUI createUI( JComponent c )
  37. {
  38. return new MotifSeparatorUI();
  39. }
  40. }