Example usage for Java com.google.gwt.user.client.ui Button fields, constructors, methods, implement or subclass
The text is from its open source code.
Button(SafeHtml html) Creates a button with the given HTML caption. | |
Button(String html) Creates a button with the given HTML caption. | |
Button(com.google.gwt.dom.client.Element element) This constructor may be used by subclasses to explicitly use an existing element. | |
Button(String html, ClickListener listener) Creates a button with the given HTML caption and click listener. | |
Button(SafeHtml html, ClickHandler handler) Creates a button with the given HTML caption and click listener. | |
Button(String html, ClickHandler handler) Creates a button with the given HTML caption and click listener. | |
Button() Creates a button with no caption. |
void | click() Programmatic equivalent of the user clicking the button. |
Button | wrap(com.google.gwt.dom.client.Element element) Creates a Button widget that wraps an existing <button> element. |