1. /*
  2. * @(#)MotifProgressBarUI.java 1.9 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.java.swing.plaf.motif;
  8. import java.awt.*;
  9. import javax.swing.*;
  10. import javax.swing.event.*;
  11. import javax.swing.plaf.*;
  12. import java.io.Serializable;
  13. import javax.swing.plaf.basic.BasicProgressBarUI;
  14. /**
  15. * A Motif ProgressBarUI.
  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.9 11/29/01
  25. * @author Michael C. Albers
  26. */
  27. public class MotifProgressBarUI extends BasicProgressBarUI
  28. {
  29. /**
  30. * Creates the ProgressBar's UI
  31. */
  32. public static ComponentUI createUI(JComponent x) {
  33. return new MotifProgressBarUI();
  34. }
  35. }