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