All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.mapway.ui.client.widget.common.ButtonEx Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package cn.mapway.ui.client.widget.common;

import com.google.gwt.user.client.ui.Button;

/**
 * The type Button ex.
 */
public class ButtonEx extends Button {

    /**
     * Instantiates a new Button ex.
     */
    public ButtonEx() {
        setStyleName("gwtEx-Button");
    }

    private Object data;

    /**
     * Gets data.
     *
     * @return the data
     */
    public Object getData() {
        return data;
    }

    /**
     * Sets data.
     *
     * @param data the data
     */
    public void setData(Object data) {
        this.data = data;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy