1 7 package javax.swing.plaf.basic; 8 9 import java.awt.*; 10 import java.awt.event.*; 11 import java.beans.*; 12 import javax.swing.*; 13 import javax.swing.text.*; 14 import javax.swing.plaf.*; 15 import javax.swing.border.*; 16 17 18 33 public class BasicTextPaneUI extends BasicEditorPaneUI { 34 35 41 public static ComponentUI createUI(JComponent c) { 42 return new BasicTextPaneUI (); 43 } 44 45 48 public BasicTextPaneUI() { 49 super(); 50 } 51 52 59 protected String getPropertyPrefix() { 60 return "TextPane"; 61 } 62 63 public void installUI(JComponent c) { 64 super.installUI(c); 65 } 66 67 78 protected void propertyChange(PropertyChangeEvent evt) { 79 super.propertyChange(evt); 80 } 81 } 82 | Popular Tags |