Java com.google.gwt.user.client.ui Button fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.user.client.ui Button fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.user.client.ui Button.

The text is from its open source code.

Subclass

com.google.gwt.user.client.ui.Button has subclasses.
Click this link to see all its subclasses.

Constructor

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.

Method

voidclick()
Programmatic equivalent of the user clicking the button.
Buttonwrap(com.google.gwt.dom.client.Element element)
Creates a Button widget that wraps an existing <button> element.