List of usage examples for com.google.gwt.dom.client OListElement TAG
String TAG
To view the source code for com.google.gwt.dom.client OListElement TAG.
Click Source Link
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); }