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;
}
Aggregations