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

x33g5p2x  于2022-01-25 转载在 其他  
字(3.4k)|赞(0)|评价(0)|浏览(175)

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

Node.setBeginJavaLine介绍

暂无

代码示例

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

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

  1. private static void adjustJavaLine(Node n, int offset) {
  2. if (n.getBeginJavaLine() > 0) {
  3. n.setBeginJavaLine(n.getBeginJavaLine() + offset);
  4. n.setEndJavaLine(n.getEndJavaLine() + offset);
  5. }
  6. }
  7. }

相关文章