Search in sources :

Example 1 with IFrameElement

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

the class Elements method createIFrameElement.

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

Aggregations

IFrameElement (elemental.html.IFrameElement)1