use of elemental.html.TextAreaElement in project che by eclipse.
the class Elements method createTextAreaElement.
public static TextAreaElement createTextAreaElement(String... classNames) {
TextAreaElement elem = getDocument().createTextAreaElement();
addClassesToElement(elem, classNames);
return elem;
}
Aggregations