1 25 26 package swingwt.awt; 27 28 public class TextArea extends swingwtx.swing.JTextArea { 29 30 public final static int SCROLLBARS_NONE = 0; 31 public final static int SCROLLBARS_VERTICAL_ONLY = 1; 32 public final static int SCROLLBARS_HORIZONTAL_ONLY = 2; 33 public final static int SCROLLBARS_BOTH = 3; 34 35 public TextArea() { super(); } 36 public TextArea(String text) { super(text); } 37 public TextArea(int rows, int columns) { super(rows, columns); } 38 public TextArea(String text, int rows, int columns) { super(text, rows, columns); } 39 public TextArea(String text, int rows, int columns, int scrollbars) { super(text, rows, columns); } 40 41 public void setScrollPane(swingwtx.swing.JScrollPane container) { 42 } 43 44 } 45 | Popular Tags |