org.apache.jasper.compiler.Generator.quote()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(8.3k)|赞(0)|评价(0)|浏览(144)

本文整理了Java中org.apache.jasper.compiler.Generator.quote()方法的一些代码示例,展示了Generator.quote()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Generator.quote()方法的具体详情如下:
包路径:org.apache.jasper.compiler.Generator
类名称:Generator
方法名:quote

Generator.quote介绍

[英]Single quote and escape a character
[中]

代码示例

代码示例来源:origin: org.jboss.web/jbossweb

public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (!pageInfo.isELIgnored() && (n.getEL() != null)) {
    out.printil("out.write("
        + JspUtil.interpreterCall(this.isTagFile, n.getType() + "{"
            + new String(n.getText()) + "}", String.class,
            n.getEL().getMapName(), false) + ");");
  } else {
    out.printil("out.write("
        + quote(n.getType() + "{" + new String(n.getText()) + "}") + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: jboss.web/jbossweb

public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (!pageInfo.isELIgnored() && (n.getEL() != null)) {
    out.printil("out.write("
        + JspUtil.interpreterCall(this.isTagFile, n.getType() + "{"
            + new String(n.getText()) + "}", String.class,
            n.getEL().getMapName(), false) + ");");
  } else {
    out.printil("out.write("
        + quote(n.getType() + "{" + new String(n.getText()) + "}") + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: org.apache.tomcat/tomcat-jasper

out.print(quote(tagVars[i].getNameGiven()));
out.print(", ");
out.print(quote(aliasedName));
out.println(");");

代码示例来源:origin: org.glassfish.web/javax.servlet.jsp

out.print(quote(tagVars[i].getNameGiven()));
out.print(", ");
out.print(quote(aliasedName));
out.println(");");

代码示例来源:origin: org.bluestemsoftware.open.maven.tparty/jsp-2.1

out.print(quote(tagVars[i].getNameGiven()));
out.print(", ");
out.print(quote(aliasedName));
out.println(");");

代码示例来源:origin: codefollower/Tomcat-Research

out.print(quote(tagVars[i].getNameGiven()));
out.print(", ");
out.print(quote(aliasedName));
out.println(");");

代码示例来源:origin: org.glassfish.web/jsp-impl

out.print(quote(tagVars[i].getNameGiven()));
out.print(", ");
out.print(quote(aliasedName));
out.println(");");

代码示例来源:origin: org.jboss.web/jbossweb

out.print(quote(tagVars[i].getNameGiven()));
out.print(", ");
out.print(quote(aliasedName));
out.println(");");

代码示例来源:origin: org.glassfish.web/jsp-impl

public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (n.getEL() != null) {
    out.printil(
      "out.write("
        + JspUtil.interpreterCall(
          this.isTagFile,
          n.getText(),
          String.class,
          n.getEL().getMapName(),
          null, null, null)
        + ");");
  } else {
    out.printil(
      "out.write("
        + quote(n.getText())
        + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: org.bluestemsoftware.open.maven.tparty/jsp-2.1

public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (n.getEL() != null) {
    out.printil(
      "out.write("
        + JspUtil.interpreterCall(
          this.isTagFile,
          n.getText(),
          String.class,
          n.getEL().getMapName(),
          null, null, null)
        + ");");
  } else {
    out.printil(
      "out.write("
        + quote(n.getText())
        + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: org.glassfish.web/jakarta.servlet.jsp

public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (n.getEL() != null) {
    out.printil(
      "out.write("
        + JspUtil.interpreterCall(
          this.isTagFile,
          n.getText(),
          String.class,
          n.getEL().getMapName(),
          null, null, null)
        + ");");
  } else {
    out.printil(
      "out.write("
        + quote(n.getText())
        + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: org.eclipse.jetty.toolchain/jetty-jsp-fragment

public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (n.getEL() != null) {
    out.printil(
      "out.write("
        + JspUtil.interpreterCall(
          this.isTagFile,
          n.getText(),
          String.class,
          n.getEL().getMapName(),
          null, null, null)
        + ");");
  } else {
    out.printil(
      "out.write("
        + quote(n.getText())
        + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: org.glassfish.web/javax.servlet.jsp

public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (n.getEL() != null) {
    out.printil(
      "out.write("
        + JspUtil.interpreterCall(
          this.isTagFile,
          n.getText(),
          String.class,
          n.getEL().getMapName(),
          null, null, null)
        + ");");
  } else {
    out.printil(
      "out.write("
        + quote(n.getText())
        + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: org.eclipse.jetty.orbit/org.apache.jasper.glassfish

public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (n.getEL() != null) {
    out.printil(
      "out.write("
        + JspUtil.interpreterCall(
          this.isTagFile,
          n.getText(),
          String.class,
          n.getEL().getMapName(),
          null, null, null)
        + ");");
  } else {
    out.printil(
      "out.write("
        + quote(n.getText())
        + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.apache.jasper.glassfish

public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (n.getEL() != null) {
    out.printil(
      "out.write("
        + JspUtil.interpreterCall(
          this.isTagFile,
          n.getText(),
          String.class,
          n.getEL().getMapName(),
          null, null, null)
        + ");");
  } else {
    out.printil(
      "out.write("
        + quote(n.getText())
        + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

@Override
public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (!pageInfo.isELIgnored() && (n.getEL() != null)) {
    out.printil("out.write("
        + JspUtil.interpreterCall(this.isTagFile, n.getType() +
            "{" + n.getText() + "}", String.class,
            n.getEL().getMapName(), false) + ");");
  } else {
    out.printil("out.write("
        + quote(n.getType() + "{" + n.getText() + "}") + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: io.undertow.jastow/jastow

@Override
public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (!pageInfo.isELIgnored() && (n.getEL() != null)) {
    out.printil("out.write("
        + elInterpreter.interpreterCall(ctxt, this.isTagFile,
            n.getType() + "{" + n.getText() + "}",
            String.class, n.getEL().getMapName()) +
        ");");
  } else {
    out.printil("out.write("
        + quote(n.getType() + "{" + n.getText() + "}") + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/jasper

@Override
public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (!pageInfo.isELIgnored() && (n.getEL() != null)) {
    out.printil("out.write("
        + elInterpreter.interpreterCall(ctxt, this.isTagFile,
            n.getType() + "{" + n.getText() + "}",
            String.class, n.getEL().getMapName(), false) +
        ");");
  } else {
    out.printil("out.write("
        + quote(n.getType() + "{" + n.getText() + "}") + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: codefollower/Tomcat-Research

@Override
public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (!pageInfo.isELIgnored() && (n.getEL() != null)) {
    out.printil("out.write("
        + elInterpreter.interpreterCall(ctxt, this.isTagFile,
            n.getType() + "{" + n.getText() + "}",
            String.class, n.getEL().getMapName()) +
        ");");
  } else {
    out.printil("out.write("
        + quote(n.getType() + "{" + n.getText() + "}") + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

代码示例来源:origin: org.apache.tomcat/tomcat-jasper

@Override
public void visit(Node.ELExpression n) throws JasperException {
  n.setBeginJavaLine(out.getJavaLine());
  if (!pageInfo.isELIgnored() && (n.getEL() != null)) {
    out.printil("out.write("
        + elInterpreter.interpreterCall(ctxt, this.isTagFile,
            n.getType() + "{" + n.getText() + "}",
            String.class, n.getEL().getMapName()) +
        ");");
  } else {
    out.printil("out.write("
        + quote(n.getType() + "{" + n.getText() + "}") + ");");
  }
  n.setEndJavaLine(out.getJavaLine());
}

相关文章