Search in sources :

Example 1 with PreElement

use of elemental.html.PreElement in project che by eclipse.

the class Elements method createPreElement.

public static PreElement createPreElement(String... classNames) {
    PreElement elem = getDocument().createPreElement();
    addClassesToElement(elem, classNames);
    return elem;
}
Also used : PreElement(elemental.html.PreElement)

Aggregations

PreElement (elemental.html.PreElement)1