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