
simple.server.extension.d20.apt.AbstractAPTExporter Maven / Gradle / Ivy
The newest version!
package simple.server.extension.d20.apt;
/**
*
* @author Javier A. Ortiz Bultron [email protected]
*/
public abstract class AbstractAPTExporter implements IAPTExporter {
public static final String BLOCK = " -----\n";
public static final String INDENT = " ";
public static final String LIST = INDENT + INDENT + "* ";
private String AUTHOR = "Javier A. Ortiz Bultrón";
/**
* @param AUTHOR the AUTHOR to set
*/
public void setAuthor(String AUTHOR) {
this.AUTHOR = AUTHOR;
}
/**
* @return the AUTHOR
*/
public String getAuthor() {
return AUTHOR;
}
/**
* The name of the menu file without extension.
*
* @return file name without extension.
*/
public abstract String getFileName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy