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 WindowsTextAreaUI extends BasicTextAreaUI { 28 36 protected Caret createCaret() { 37 return new WindowsTextUI.WindowsCaret(); 38 } 39 40 46 public static ComponentUI createUI(JComponent c) { 47 return new WindowsTextAreaUI(); 48 } 49 50 } 51 52 | Popular Tags |