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

cn.ennwifi.webframe.ui.client.common.NeButton Maven / Gradle / Ivy

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

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


/**
 * The Class NeButton.
 */
public class NeButton extends Button {

    /**
     * Instantiates a new ne button.
     */
    public NeButton() {
  }

    /**
     * Instantiates a new ne button.
     *
     * @param title the title
     */
    public NeButton(String title) {
    super(title);
  }

  /** The data. */
  private Object data;

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy