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

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

Introduction

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

Prototype

String TAG

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

Click Source Link

Usage

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

License:Open Source License

public Breadcrumb() {
    super(OListElement.TAG);
    this.endConstruct();
}

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