- 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 composite input control. Composite controls are composed of multiple * individual input controls that combine to form a single value. Example, a * composite field might be used to represent a name which is broken up into * first and last names. In this case there would be a composite field that * consists of two text fields. * * @param name * (Required) a non-unique local identifier used to differentiate * the element from its siblings within an interactive division. * @param rend * (May be null) a rendering hint used to override the default * display of the element. * @return a new composite field. */ public Composite addComposite(String name, String rend) throws WingException { Composite composite = new Composite(context, name, rend); contents.add(composite); return composite; }