home *** CD-ROM | disk | FTP | other *** search
- package com.bitmechanic.gsp;
-
- import java.io.IOException;
- import java.util.Vector;
-
- public interface TemplateParser {
- Integer yylex() throws IOException, ParserException;
-
- String getExtendsStuff();
-
- String getImplementsStuff();
-
- String getImportsStuff();
-
- String getClassStuff();
-
- String getCodeStuff();
-
- Vector getDependancies();
-
- Vector getCharVector();
-
- boolean usesSessionCache();
-
- boolean usesGlobalCache();
-
- void setStripCR(boolean var1);
-
- void setSourceFile(String var1);
-
- void setRewriteURL(boolean var1);
-
- void setRewriteHosts(String[] var1);
- }
-