Package com.google.caja.parser.quasiliteral

Examples of com.google.caja.parser.quasiliteral.HtmlRuleDoclet


   */
  public void setOutput(String output) {
    if(output.equals("text")) {
      this.output = new TextRuleDoclet();
    } else if(output.equals("html")) {
      this.output = new HtmlRuleDoclet();
    } else if(output.equals("json")) {
      this.output = new JsonRuleDoclet();
    } else if(output.equals("text")) {
      this.output = new WikiRuleDoclet();
    } else if(output.equals("dojo")) {
View Full Code Here

TOP

Related Classes of com.google.caja.parser.quasiliteral.HtmlRuleDoclet

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.