Package org.lilystudio.smarty4j.statement

Examples of org.lilystudio.smarty4j.statement.Document


      // 初始化模板的相关信息
      this.path = path.replace('\\', '/');
      name = path.substring(engine.getTemplatePath().length());
    }
    TemplateReader in = new TemplateReader(reader);
    doc = new Document(this, in);
    in.checkStatus(name);
    if (parse) {
      this.parser = toParser(null);
    }
  }
View Full Code Here

TOP

Related Classes of org.lilystudio.smarty4j.statement.Document

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.