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

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

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

Node.accept介绍

[英]Selects and invokes a method in the visitor class based on the node type. This is abstract and should be overrode by the extending classes.
[中]根据节点类型选择并调用visitor类中的方法。这是抽象的,应该被扩展类覆盖。

代码示例

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

/**
 * Visit the nodes in the list with the supplied visitor
 *
 * @param v
 *            The visitor used
 *
 * @throws JasperException if an error occurs while visiting a node
 */
public void visit(Visitor v) throws JasperException {
  for (Node n : list) {
    n.accept(v);
  }
}

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

/**
 * Visit the nodes in the list with the supplied visitor
 * @param v The visitor used
 */
public void visit(Visitor v) throws JasperException {
  Iterator<Node> iter = list.iterator();
  while (iter.hasNext()) {
  Node n = iter.next();
  n.accept(v);
  }
}

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

/**
 * Visit the nodes in the list with the supplied visitor
 * @param v The visitor used
 */
public void visit(Visitor v) throws JasperException {
  Iterator<Node> iter = list.iterator();
  while (iter.hasNext()) {
  Node n = iter.next();
  n.accept(v);
  }
}

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

/**
 * Visit the nodes in the list with the supplied visitor
 * @param v The visitor used
 */
public void visit(Visitor v) throws JasperException {
  Iterator<Node> iter = list.iterator();
  while (iter.hasNext()) {
  Node n = iter.next();
  n.accept(v);
  }
}

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

/**
 * Visit the nodes in the list with the supplied visitor
 * 
 * @param v
 *            The visitor used
 */
public void visit(Visitor v) throws JasperException {
  Iterator<Node> iter = list.iterator();
  while (iter.hasNext()) {
    Node n = iter.next();
    n.accept(v);
  }
}

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

/**
 * Visit the nodes in the list with the supplied visitor
 * @param v The visitor used
 */
public void visit(Visitor v) throws JasperException {
  Iterator iter = list.iterator();
  while (iter.hasNext()) {
  Node n = (Node) iter.next();
  n.accept(v);
  }
}

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

/**
 * Visit the nodes in the list with the supplied visitor
 * @param v The visitor used
 */
public void visit(Visitor v) throws JasperException {
  Iterator iter = list.iterator();
  while (iter.hasNext()) {
  Node n = (Node) iter.next();
  n.accept(v);
  }
}

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

/**
 * Visit the nodes in the list with the supplied visitor
 * @param v The visitor used
 */
public void visit(Visitor v) throws JasperException {
  Iterator<Node> iter = list.iterator();
  while (iter.hasNext()) {
  Node n = iter.next();
  n.accept(v);
  }
}

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

public static void dump(Node n) {
try {
  n.accept(new DumpVisitor());	
} catch (JasperException e) {
  e.printStackTrace();
}
}

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

public static void dump(Node n) {
try {
  n.accept(new DumpVisitor());	
} catch (JasperException e) {
  e.printStackTrace();
}
}

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

public static void dump(Node n) {
try {
  n.accept(new DumpVisitor());	
} catch (JasperException e) {
  e.printStackTrace();
}
}

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

public static void dump(Node n) {
try {
  n.accept(new DumpVisitor());	
} catch (JasperException e) {
  e.printStackTrace();
}
}

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

public static void dump(Node n) {
try {
  n.accept(new DumpVisitor());	
} catch (JasperException e) {
  e.printStackTrace();
}
}

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

public static void dump(Node n) {
  try {
    n.accept(new DumpVisitor());        
  } catch (JasperException e) {
    e.printStackTrace();
  }
}

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

public static void dump(Node n) {
try {
  n.accept(new DumpVisitor());	
} catch (JasperException e) {
  e.printStackTrace();
}
}

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

public static void dump(Node n) {
try {
  n.accept(new DumpVisitor());	
} catch (JasperException e) {
  e.printStackTrace();
}
}

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

public static void dump(Node n) {
try {
  n.accept(new DumpVisitor());	
} catch (JasperException e) {
  e.printStackTrace();
}
}

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

public static void dump(Node n) {
try {
  n.accept(new DumpVisitor());	
} catch (JasperException e) {
  e.printStackTrace();
}
}

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

public static void dump(Node n) {
try {
  n.accept(new DumpVisitor());	
} catch (JasperException e) {
  e.printStackTrace();
}
}

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

public static void dump(Node n) {
  try {
    n.accept(new DumpVisitor());        
  } catch (JasperException e) {
    e.printStackTrace();
  }
}

相关文章