1. /*
  2. * @(#)WindowsProgressBarUI.java 1.14 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.windows;
  8. import javax.swing.plaf.basic.*;
  9. import javax.swing.plaf.*;
  10. import javax.swing.*;
  11. import java.awt.*;
  12. /**
  13. * Windows rendition of the component.
  14. * <p>
  15. * <strong>Warning:</strong>
  16. * Serialized objects of this class will not be compatible with
  17. * future Swing releases. The current serialization support is appropriate
  18. * for short term storage or RMI between applications running the same
  19. * version of Swing. A future release of Swing will provide support for
  20. * long term persistence.
  21. *
  22. * @version 1.14 11/29/01
  23. * @author Michael C. Albers
  24. */
  25. public class WindowsProgressBarUI extends BasicProgressBarUI
  26. {
  27. public static ComponentUI createUI(JComponent x) {
  28. return new WindowsProgressBarUI();
  29. }
  30. }