Java Code Examples for com.google.gwt.dom.client.LIElement#TAG

The following examples show how to use com.google.gwt.dom.client.LIElement#TAG . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NavDivider.java    From putnami-web-toolkit with GNU Lesser General Public License v3.0 4 votes vote down vote up
public NavDivider() {
	super(LIElement.TAG);
	StyleUtils.addStyle(this, NavDivider.STYLE_DIVIDER);
}
 
Example 2
Source File: ListItem.java    From putnami-web-toolkit with GNU Lesser General Public License v3.0 4 votes vote down vote up
public ListItem() {
	super(LIElement.TAG, AbstractHTMLPanel.EMPTY_HTML);
}
 
Example 3
Source File: ListItem.java    From putnami-web-toolkit with GNU Lesser General Public License v3.0 4 votes vote down vote up
public ListItem(String html) {
	super(LIElement.TAG, html);
}
 
Example 4
Source File: DropdownHeader.java    From putnami-web-toolkit with GNU Lesser General Public License v3.0 4 votes vote down vote up
public DropdownHeader() {
	super(LIElement.TAG);
	StyleUtils.addStyle(this, DropdownHeader.STYLE_HEADER);
}
 
Example 5
Source File: BreadcrumbLink.java    From putnami-web-toolkit with GNU Lesser General Public License v3.0 4 votes vote down vote up
public BreadcrumbLink() {
	super(LIElement.TAG);
}
 
Example 6
Source File: NavLink.java    From putnami-web-toolkit with GNU Lesser General Public License v3.0 4 votes vote down vote up
public NavLink() {
	super(LIElement.TAG);
	this.endConstruct();
}
 
Example 7
Source File: NavDropdown.java    From putnami-web-toolkit with GNU Lesser General Public License v3.0 4 votes vote down vote up
public NavDropdown() {
	super(LIElement.TAG);
	this.initHandler();
}
 
Example 8
Source File: NavDropdown.java    From putnami-web-toolkit with GNU Lesser General Public License v3.0 4 votes vote down vote up
public NavDropdown(String label) {
	super(LIElement.TAG, label);
	this.initHandler();
}
 
Example 9
Source File: NavCollapse.java    From putnami-web-toolkit with GNU Lesser General Public License v3.0 4 votes vote down vote up
public NavCollapse() {
	super(LIElement.TAG);
	this.initHandler();
}
 
Example 10
Source File: NavCollapse.java    From putnami-web-toolkit with GNU Lesser General Public License v3.0 4 votes vote down vote up
public NavCollapse(String label) {
	super(LIElement.TAG, label);
	this.initHandler();
}