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