1 7 package com.sun.java.swing.plaf.motif; 8 9 import javax.swing.*; 10 import javax.swing.plaf.basic.BasicTextFieldUI ; 11 import javax.swing.plaf.*; 12 import javax.swing.text.Caret ; 13 14 27 public class MotifTextFieldUI extends BasicTextFieldUI { 28 29 35 public static ComponentUI createUI(JComponent c) { 36 return new MotifTextFieldUI(); 37 } 38 39 47 protected Caret createCaret() { 48 return MotifTextUI.createCaret(); 49 } 50 51 } 52 | Popular Tags |