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

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

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

Node.getParent介绍

暂无

代码示例

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

public Node.Root getRoot() {
Node n = this;
while (!(n instanceof Node.Root)) {
  n = n.getParent();
}
return (Node.Root) n;
}

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

public Node.Root getRoot() {
Node n = this;
while (!(n instanceof Node.Root)) {
  n = n.getParent();
}
return (Node.Root) n;
}

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

Root(Mark start, Node parent, boolean isXmlSyntax) {
  super(start, parent);
  this.isXmlSyntax = isXmlSyntax;
  this.qName = JSP_ROOT_ACTION;
  this.localName = ROOT_ACTION;
  // Figure out and set the parent root
  Node r = parent;
  while ((r != null) && !(r instanceof Node.Root))
    r = r.getParent();
  parentRoot = (Node.Root) r;
}

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

public Node.Root getRoot() {
Node n = this;
while (!(n instanceof Node.Root)) {
  n = n.getParent();
}
return (Node.Root) n;
}

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

Root(Mark start, Node parent, boolean isXmlSyntax) {
  super(start, parent);
  this.isXmlSyntax = isXmlSyntax;
  this.qName = JSP_ROOT_ACTION;
  this.localName = ROOT_ACTION;
  // Figure out and set the parent root
  Node r = parent;
  while ((r != null) && !(r instanceof Node.Root))
  r = r.getParent();
  parentRoot = (Node.Root) r;
}

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

Root(Mark start, Node parent, boolean isXmlSyntax) {
  super(start, parent);
  this.isXmlSyntax = isXmlSyntax;
  this.qName = JSP_ROOT_ACTION;
  this.localName = ROOT_ACTION;
  // Figure out and set the parent root
  Node r = parent;
  while ((r != null) && !(r instanceof Node.Root))
  r = r.getParent();
  parentRoot = (Node.Root) r;
}

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

public Node.Root getRoot() {
Node n = this;
while (!(n instanceof Node.Root)) {
  n = n.getParent();
}
return (Node.Root) n;
}

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

Root(Mark start, Node parent, boolean isXmlSyntax) {
  super(start, parent);
  this.isXmlSyntax = isXmlSyntax;
  this.qName = JSP_ROOT_ACTION;
  this.localName = ROOT_ACTION;
  // Figure out and set the parent root
  Node r = parent;
  while ((r != null) && !(r instanceof Node.Root))
    r = r.getParent();
  parentRoot = (Node.Root) r;
}

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

public Node.Root getRoot() {
Node n = this;
while (!(n instanceof Node.Root)) {
  n = n.getParent();
}
return (Node.Root) n;
}

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

Root(Mark start, Node parent, boolean isXmlSyntax) {
  super(start, parent);
  this.isXmlSyntax = isXmlSyntax;
  this.qName = JSP_ROOT_ACTION;
  this.localName = ROOT_ACTION;
  // Figure out and set the parent root
  Node r = parent;
  while ((r != null) && !(r instanceof Node.Root))
  r = r.getParent();
  parentRoot = (Node.Root) r;
}

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

public Node.Root getRoot() {
Node n = this;
while (!(n instanceof Node.Root)) {
  n = n.getParent();
}
return (Node.Root) n;
}

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

public Node.Root getRoot() {
  Node n = this;
  while (!(n instanceof Node.Root)) {
    n = n.getParent();
  }
  return (Node.Root) n;
}

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

public Node.Root getRoot() {
  Node n = this;
  while (!(n instanceof Node.Root)) {
    n = n.getParent();
  }
  return (Node.Root) n;
}

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

Root(Mark start, Node parent, boolean isXmlSyntax) {
  super(start, parent);
  this.isXmlSyntax = isXmlSyntax;
  this.qName = JSP_ROOT_ACTION;
  this.localName = ROOT_ACTION;
  // Figure out and set the parent root
  Node r = parent;
  while ((r != null) && !(r instanceof Node.Root))
  r = r.getParent();
  parentRoot = (Node.Root) r;
}

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

public Node.Root getRoot() {
  Node n = this;
  while (!(n instanceof Node.Root)) {
    n = n.getParent();
  }
  return (Node.Root) n;
}

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

public Node.Root getRoot() {
  Node n = this;
  while (!(n instanceof Node.Root)) {
    n = n.getParent();
  }
  return (Node.Root) n;
}

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

Root(Mark start, Node parent, boolean isXmlSyntax) {
  super(start, parent);
  this.isXmlSyntax = isXmlSyntax;
  this.qName = JSP_ROOT_ACTION;
  this.localName = ROOT_ACTION;
  // Figure out and set the parent root
  Node r = parent;
  while ((r != null) && !(r instanceof Node.Root))
  r = r.getParent();
  parentRoot = (Node.Root) r;
}

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

Root(Mark start, Node parent, boolean isXmlSyntax) {
  super(start, parent);
  this.isXmlSyntax = isXmlSyntax;
  this.qName = JSP_ROOT_ACTION;
  this.localName = ROOT_ACTION;
  // Figure out and set the parent root
  Node r = parent;
  while ((r != null) && !(r instanceof Node.Root))
    r = r.getParent();
  parentRoot = (Node.Root) r;
}

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

public Node.Root getRoot() {
Node n = this;
while (!(n instanceof Node.Root)) {
  n = n.getParent();
}
return (Node.Root) n;
}

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

public Node.Root getRoot() {
  Node n = this;
  while (!(n instanceof Node.Root)) {
    n = n.getParent();
  }
  return (Node.Root) n;
}

相关文章