<s:textarea label="Comments" name="comments" cols="30" rows="8"/>
4344454647484950515253
} protected void populateParams() { super.populateParams(); TextArea textArea = ((TextArea) component); textArea.setCols(cols); textArea.setReadonly(readonly); textArea.setRows(rows); textArea.setWrap(wrap); }
32333435363738
public String getBeanName() { return "textarea"; } protected Component getBean(ValueStack stack, HttpServletRequest req, HttpServletResponse res) { return new TextArea(stack, req, res); }
35363738394041
public TextAreaModel(ValueStack stack, HttpServletRequest req, HttpServletResponse res) { super(stack, req, res); } protected Component getBean() { return new TextArea(stack, req, res); }
69707172737475
} @Override protected void setUp() throws Exception { super.setUp(); this.tag = new TextArea(stack, request, response); }
40414243444546
protected String readonly; protected String rows; protected String wrap; public Component getBean(ValueStack stack, HttpServletRequest req, HttpServletResponse res) { return new TextArea(stack, req, res); }
4647484950515253545556
36373839404142
41424344454647
4748495051525354555657