home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / jserv / com / bitmechanic / gsp / TemplateParser.class (.txt) < prev   
Encoding:
Java Class File  |  1999-01-24  |  752 b   |  35 lines

  1. package com.bitmechanic.gsp;
  2.  
  3. import java.io.IOException;
  4. import java.util.Vector;
  5.  
  6. public interface TemplateParser {
  7.    Integer yylex() throws IOException, ParserException;
  8.  
  9.    String getExtendsStuff();
  10.  
  11.    String getImplementsStuff();
  12.  
  13.    String getImportsStuff();
  14.  
  15.    String getClassStuff();
  16.  
  17.    String getCodeStuff();
  18.  
  19.    Vector getDependancies();
  20.  
  21.    Vector getCharVector();
  22.  
  23.    boolean usesSessionCache();
  24.  
  25.    boolean usesGlobalCache();
  26.  
  27.    void setStripCR(boolean var1);
  28.  
  29.    void setSourceFile(String var1);
  30.  
  31.    void setRewriteURL(boolean var1);
  32.  
  33.    void setRewriteHosts(String[] var1);
  34. }
  35.