Search in sources :

Example 1 with BRElement

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

the class Elements method createBRElement.

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

Aggregations

BRElement (elemental.html.BRElement)1