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

net.anotheria.asg.generator.view.meta.MetaCustomFunctionElement Maven / Gradle / Ivy

There is a newer version: 4.3.0
Show newest version
package net.anotheria.asg.generator.view.meta;

/**
 * This element allows to specify a custom function element (link or button).
 *
 * @author another
 * @version $Id: $Id
 */
public class MetaCustomFunctionElement extends MetaViewElement{
	/**
	 * Link target of the element.
	 */
	private String link;
	/**
	 * Caption of the link.
	 */
	private String caption;
	
	/**
	 * 

Getter for the field caption.

* * @return a {@link java.lang.String} object. */ public String getCaption() { return caption; } /** {@inheritDoc} */ public void setCaption(String caption) { this.caption = caption; } /** *

Getter for the field link.

* * @return a {@link java.lang.String} object. */ public String getLink() { return link; } /** *

Setter for the field link.

* * @param link a {@link java.lang.String} object. */ public void setLink(String link) { this.link = link; } /** * Creates a new MetaCustomFunctionElement. * * @param name a {@link java.lang.String} object. */ public MetaCustomFunctionElement(String name){ super(name); } /** {@inheritDoc} */ @Override public boolean equals(Object o) { return super.equals(o); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy