1 16 package org.mortbay.html; 17 18 19 23 public class TextArea extends Block 24 { 25 26 27 public TextArea(String name) 28 { 29 super("textarea"); 30 attribute("name",name); 31 } 32 33 34 36 public TextArea(String name, String s) 37 { 38 this(name); 39 add(s); 40 } 41 42 43 public TextArea setSize(int cols,int lines) 44 { 45 attribute("rows",lines); 46 attribute("cols",cols); 47 return this; 48 } 49 } 50 51 | Popular Tags |