net.anotheria.asg.generator.view.meta.MetaCustomSection Maven / Gradle / Ivy
The newest version!
package net.anotheria.asg.generator.view.meta;
/**
* Allows the developer to integrate a custom section into generated frontend.
*
* @author another
* @version $Id: $Id
*/
public class MetaCustomSection extends MetaSection{
/**
* Path to be called whenever the section is selected.
*/
private String path;
/**
* Constructor for MetaCustomSection.
*
* @param title a {@link java.lang.String} object.
*/
public MetaCustomSection(String title){
super(title);
}
/** {@inheritDoc} */
@Override public String toString(){
return getTitle()+": "+path;
}
/**
* Getter for the field path
.
*
* @return a {@link java.lang.String} object.
*/
public String getPath() {
return path;
}
/**
* Setter for the field path
.
*
* @param path a {@link java.lang.String} object.
*/
public void setPath(String path) {
this.path = path;
}
/** {@inheritDoc} */
@Override
public boolean equals(Object o) {
return super.equals(o);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy