Search in sources :

Example 1 with TableCellElement

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;
}
Also used : TableCellElement(elemental.html.TableCellElement)

Aggregations

TableCellElement (elemental.html.TableCellElement)1