KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * @(#)WindowsPasswordFieldUI.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 /**
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 WindowsPasswordFieldUI extends BasicPasswordFieldUI {
28
29     /**
30      * Creates a UI for a JPasswordField
31      *
32      * @param c the password field
33      * @return the UI
34      */

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

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