Example usage for com.google.gwt.user.client.ui UIObject getElement

List of usage examples for com.google.gwt.user.client.ui UIObject getElement

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui UIObject getElement.

Prototype

public Element getElement() 

Source Link

Document

Gets a handle to the object's underlying DOM element.

Usage

From source file:gwt.material.design.components.client.utils.helper.StyleHelper.java

License:Apache License

public final static void setCssProperty(final UIObject uiObject, final String property, final String value) {
    setCssProperty(uiObject.getElement(), property, value);
}

From source file:gwt.material.design.components.client.utils.helper.StyleHelper.java

License:Apache License

public final static void setCssProperty(final UIObject uiObject, String child, String property,
        final Style.HasCssName value) {
    setCssProperty(uiObject.getElement(), child, property, value == null ? null : value.getCssName());
}

From source file:gwt.material.design.components.client.utils.helper.StyleHelper.java

License:Apache License

public final static void setCssProperty(final UIObject uiObject, String child, String property, String value) {
    setCssProperty(uiObject.getElement(), child, property, value);
}

From source file:gwt.material.design.components.client.utils.helper.StyleHelper.java

License:Apache License

public final static void removeCssProperty(final UIObject uiObject, final String property) {
    removeCssProperty(uiObject.getElement(), property);
}

From source file:gwt.material.design.components.client.utils.helper.StyleHelper.java

License:Apache License

public final static String getCssProperty(final UIObject uiObject, final String property) {
    return getCssProperty(uiObject.getElement(), property);
}

From source file:gwt.material.design.components.client.utils.helper.StyleHelper.java

License:Apache License

public final static void setProperty(final UIObject uiObject, final String property,
        final Style.HasCssName value) {
    setProperty(uiObject.getElement(), property, value == null ? null : value.getCssName());
}

From source file:gwt.material.design.components.client.utils.helper.StyleHelper.java

License:Apache License

public final static void setProperty(final UIObject uiObject, final String property, final String value) {
    setProperty(uiObject.getElement(), property, value);
}

From source file:gwt.material.design.components.client.utils.helper.StyleHelper.java

License:Apache License

public final static void removeProperty(final UIObject uiObject, final String property) {
    removeProperty(uiObject.getElement(), property);
}

From source file:gwt.material.design.components.client.utils.helper.StyleHelper.java

License:Apache License

public final static String getProperty(final UIObject uiObject, final String property) {
    return getProperty(uiObject.getElement(), property);
}

From source file:gwt.material.design.components.client.utils.helper.StyleHelper.java

License:Apache License

public final static boolean getPropertyAsBoolean(final UIObject uiObject, final String property) {
    return Boolean.valueOf(getProperty(uiObject.getElement(), property));
}