
fauxjsp.api.parser.JspParserFactory Maven / Gradle / Ivy
package fauxjsp.api.parser;
/**
* Creates {@link JspParser} instances
* @author George Georgovassilis
*/
public interface JspParserFactory {
/**
* Return a new {@link JspParser} instance
* @return a new instance
*/
JspParser create();
/**
* Return a new {@link JspParser} instance with a given parent parser. The parent parser may be
* consulted for resolution of taglibs or scoped properties
* @param parent Parent parser
* @return new parser
*/
JspParser create(JspParser parent);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy