Example usage for com.google.gwt.dom.client UListElement TAG

List of usage examples for com.google.gwt.dom.client UListElement TAG

Introduction

In this page you can find the example usage for com.google.gwt.dom.client UListElement TAG.

Prototype

String TAG

To view the source code for com.google.gwt.dom.client UListElement TAG.

Click Source Link

Usage

From source file:fr.putnami.pwt.core.widget.client.ErrorGroup.java

License:Open Source License

public ErrorGroup() {
    super(UListElement.TAG);
    this.setColor(this.color);
}

From source file:fr.putnami.pwt.core.widget.client.List.java

License:Open Source License

public List() {
    this(UListElement.TAG);
}

From source file:fr.putnami.pwt.core.widget.client.List.java

License:Open Source License

@UiConstructor
public List(String tag) {
    super(OListElement.TAG.equals(tag) || UListElement.TAG.equals(tag) ? tag : UListElement.TAG);
    this.setType(this.type);
}

From source file:fr.putnami.pwt.core.widget.client.Nav.java

License:Open Source License

public Nav() {
    super(UListElement.TAG);
    StyleUtils.addStyle(this, Nav.STYLE_NAV);
}