1. /*
  2. * @(#)MotifProgressBarUI.java 1.10 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 java.awt.*;
  12. import javax.swing.*;
  13. import javax.swing.event.*;
  14. import javax.swing.plaf.*;
  15. import java.io.Serializable;
  16. import javax.swing.plaf.basic.BasicProgressBarUI;
  17. /**
  18. * A Motif ProgressBarUI.
  19. * <p>
  20. * <strong>Warning:</strong>
  21. * Serialized objects of this class will not be compatible with
  22. * future Swing releases. The current serialization support is appropriate
  23. * for short term storage or RMI between applications running the same
  24. * version of Swing. A future release of Swing will provide support for
  25. * long term persistence.
  26. *
  27. * @version 1.10 02/02/00
  28. * @author Michael C. Albers
  29. */
  30. public class MotifProgressBarUI extends BasicProgressBarUI
  31. {
  32. /**
  33. * Creates the ProgressBar's UI
  34. */
  35. public static ComponentUI createUI(JComponent x) {
  36. return new MotifProgressBarUI();
  37. }
  38. }