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