Example usage for com.google.gwt.event.logical.shared ValueChangeEvent getValue

List of usage examples for com.google.gwt.event.logical.shared ValueChangeEvent getValue

Introduction

In this page you can find the example usage for com.google.gwt.event.logical.shared ValueChangeEvent getValue.

Prototype

public T getValue() 

Source Link

Document

Gets the value.

Usage

From source file:com.github.gwtbootstrap.showcase.client.Buttons.java

License:Apache License

@UiHandler("icons")
void onChangeIcons(ValueChangeEvent<IconType> e) {
    effectiveButton.setIcon(e.getValue());
}

From source file:com.github.gwtbootstrap.showcase.client.Buttons.java

License:Apache License

@UiHandler("iconSize")
void onChangeIconSize(ValueChangeEvent<IconSize> e) {
    effectiveButton.setIconSize(e.getValue());
}

From source file:com.github.gwtbootstrap.showcase.client.Buttons.java

License:Apache License

@UiHandler("iconPosition")
void onChangeIconPosition(ValueChangeEvent<IconPosition> e) {
    effectiveButton.setIconPosition(e.getValue());
}

From source file:com.github.gwtbootstrap.showcase.client.Buttons.java

License:Apache License

@UiHandler("toggle")
void onChangeToggle(ValueChangeEvent<Boolean> e) {
    effectiveButton.setToggle(e.getValue());
}

From source file:com.github.gwtbootstrap.showcase.client.Buttons.java

License:Apache License

@UiHandler("block")
void onChangeBlock(ValueChangeEvent<Boolean> e) {
    effectiveButton.setBlock(e.getValue());
}

From source file:com.github.gwtbootstrap.showcase.client.Buttons.java

License:Apache License

@UiHandler("loadingText")
void onChangeLoadingText(ValueChangeEvent<String> e) {
    effectiveButton.setLoadingText(e.getValue());
}

From source file:com.github.gwtbootstrap.showcase.client.Buttons.java

License:Apache License

@UiHandler("completeText")
void onChangeCompleteText(ValueChangeEvent<String> e) {
    effectiveButton.setCompleteText(e.getValue());
    GWT.log(e.getValue());
}

From source file:com.github.gwtbootstrap.showcase.client.Datepicker.java

License:Apache License

@UiHandler("autoClose")
public void onClickAutoClose(ValueChangeEvent<Boolean> e) {
    datePicker.setAutoClose(e.getValue());
    datePicker.reconfigure();/* www .j  av  a 2  s .com*/
}

From source file:com.github.gwtbootstrap.showcase.client.Datepicker.java

License:Apache License

@UiHandler("enabled")
public void onClickEnabed(ValueChangeEvent<Boolean> e) {
    datePicker.setEnabled(e.getValue());
}

From source file:com.github.gwtbootstrap.showcase.client.Datepicker.java

License:Apache License

@UiHandler("format")
public void onChangeFormat(ValueChangeEvent<String> e) {
    datePicker.setFormat(e.getValue());
    datePicker.reconfigure();/*w  w w .  ja  va2 s. com*/
}