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 26 public class WindowsEditorPaneUI extends BasicEditorPaneUI 27 { 28 29 35 public static ComponentUI createUI(JComponent c) { 36 return new WindowsEditorPaneUI(); 37 } 38 39 47 protected Caret createCaret() { 48 return new WindowsTextUI.WindowsCaret(); 49 } 50 } 51 52 | Popular Tags |