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.BasicTextAreaUI ; 13 14 29 public class MotifTextAreaUI extends BasicTextAreaUI { 30 31 37 public static ComponentUI createUI(JComponent ta) { 38 return new MotifTextAreaUI(); 39 } 40 41 49 protected Caret createCaret() { 50 return MotifTextUI.createCaret(); 51 } 52 53 } 54 | Popular Tags |