KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > java > swing > plaf > windows > WindowsTextPaneUI


1 /*
2  * @(#)WindowsTextPaneUI.java 1.15 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.windows;
9
10 import javax.swing.plaf.*;
11 import javax.swing.plaf.basic.*;
12 import javax.swing.*;
13 import javax.swing.text.Caret JavaDoc;
14
15
16 /**
17  * Windows rendition of the component.
18  * <p>
19  * <strong>Warning:</strong>
20  * Serialized objects of this class will not be compatible with
21  * future Swing releases. The current serialization support is appropriate
22  * for short term storage or RMI between applications running the same
23  * version of Swing. A future release of Swing will provide support for
24  * long term persistence.
25  */

26 public class WindowsTextPaneUI extends BasicTextPaneUI
27 {
28     /**
29      * Creates a UI for a JTextPane.
30      *
31      * @param c the styled text component
32      * @return the UI
33      */

34     public static ComponentUI createUI(JComponent c) {
35         return new WindowsTextPaneUI();
36     }
37
38     /**
39      * Creates the object to use for a caret. By default an
40      * instance of WindowsCaret is created. This method
41      * can be redefined to provide something else that implements
42      * the InputPosition interface or a subclass of DefaultCaret.
43      *
44      * @return the caret object
45      */

46     protected Caret JavaDoc createCaret() {
47         return new WindowsTextUI.WindowsCaret();
48     }
49 }
50
51
Popular Tags