cn.mapway.document.ui.client.component.CustomAnchor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapway-doc-ui Show documentation
Show all versions of mapway-doc-ui Show documentation
auto gen doc from api with ui
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;
}
}