1 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 ; 14 15 16 17 27 public class WindowsPasswordFieldUI extends BasicPasswordFieldUI { 28 29 35 public static ComponentUI createUI(JComponent c) { 36 return new WindowsPasswordFieldUI(); 37 } 38 39 40 48 protected Caret createCaret() { 49 return new WindowsTextUI.WindowsCaret(); 50 } 51 } 52 53 | Popular Tags |