1 7 package javax.swing.plaf.basic; 8 9 import javax.swing.*; 10 import javax.swing.plaf.ComponentUI ; 11 12 19 public class BasicFormattedTextFieldUI extends BasicTextFieldUI { 20 26 public static ComponentUI createUI(JComponent c) { 27 return new BasicFormattedTextFieldUI (); 28 } 29 30 37 protected String getPropertyPrefix() { 38 return "FormattedTextField"; 39 } 40 } 41 | Popular Tags |