KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)WindowsTextAreaUI.java 1.16 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 /**
18  * Windows rendition of the component.
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 public class WindowsTextAreaUI extends BasicTextAreaUI {
28     /**
29      * Creates the object to use for a caret. By default an
30      * instance of WindowsCaret is created. This method
31      * can be redefined to provide something else that implements
32      * the InputPosition interface or a subclass of DefaultCaret.
33      *
34      * @return the caret object
35      */

36     protected Caret JavaDoc createCaret() {
37         return new WindowsTextUI.WindowsCaret();
38     }
39
40     /**
41      * Creates a UI for a JTextField.
42      *
43      * @param c the text field
44      * @return the UI
45      */

46     public static ComponentUI createUI(JComponent c) {
47         return new WindowsTextAreaUI();
48     }
49
50 }
51
52
Popular Tags