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