KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > java > swing > plaf > motif > MotifProgressBarUI


1 /*
2  * @(#)MotifProgressBarUI.java 1.13 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.java.swing.plaf.motif;
9
10 import java.awt.*;
11 import javax.swing.*;
12 import javax.swing.event.*;
13 import javax.swing.plaf.*;
14 import java.io.Serializable JavaDoc;
15
16 import javax.swing.plaf.basic.BasicProgressBarUI JavaDoc;
17
18
19 /**
20  * A Motif ProgressBarUI.
21  * <p>
22  * <strong>Warning:</strong>
23  * Serialized objects of this class will not be compatible with
24  * future Swing releases. The current serialization support is appropriate
25  * for short term storage or RMI between applications running the same
26  * version of Swing. A future release of Swing will provide support for
27  * long term persistence.
28  *
29  * @version 1.13 12/19/03
30  * @author Michael C. Albers
31  */

32 public class MotifProgressBarUI extends BasicProgressBarUI JavaDoc
33 {
34     /**
35      * Creates the ProgressBar's UI
36      */

37     public static ComponentUI createUI(JComponent x) {
38     return new MotifProgressBarUI();
39     }
40
41 }
42
Popular Tags