KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)MotifSeparatorUI.java 1.21 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 javax.swing.*;
11 import java.awt.Color JavaDoc;
12 import java.awt.Dimension JavaDoc;
13 import java.awt.Graphics JavaDoc;
14 import java.awt.Insets JavaDoc;
15 import java.awt.Rectangle JavaDoc;
16 import javax.swing.plaf.*;
17 import javax.swing.plaf.basic.BasicSeparatorUI JavaDoc;
18
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.21 12/19/03
31  * @author Georges Saab
32  * @author Jeff Shapiro
33  */

34
35 public class MotifSeparatorUI extends BasicSeparatorUI JavaDoc
36 {
37     public static ComponentUI createUI( JComponent c )
38     {
39         return new MotifSeparatorUI();
40     }
41
42 }
43
44
45
46
47
Popular Tags