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

cn.mapway.document.ui.client.component.CustomAnchor Maven / Gradle / Ivy

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

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

// TODO: Auto-generated Javadoc

/**
 * The Class CustomAnchor.
 */
public class CustomAnchor extends Anchor {
	
	/** 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