- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {StringBuilder s =
new StringBuilder()
new StringBuilder(32)
String str;new StringBuilder(str)
- Smart code suggestions by Codota
}
/** * Add a multi-line text input control. * * @param name * (Required) a non-unique local identifier used to differentiate * the element from its siblings within an interactive division. * This is the name of the field use when data is submitted back * to the server. * @return a new text area field */ public TextArea addTextArea(String name) throws WingException { return addTextArea(name, null); }
TextArea addValue = addComposite.addTextArea("value"); Text addLang = addComposite.addText("language");