Example usage for com.google.gwt.user.client.ui ToggleButton getHTML

List of usage examples for com.google.gwt.user.client.ui ToggleButton getHTML

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui ToggleButton getHTML.

Prototype

@Override
public String getHTML() 

Source Link

Document

Gets the current face's html.

Usage

From source file:cl.uai.client.toolbar.buttons.MarkingButtons.java

License:Open Source License

public String getSelectedButtonLabel() {
    ToggleButton btn = this.buttons.get(selectedIndex);
    return btn.getHTML();
}