Methods Summary |
---|
public void | buildAclEntries(PrincipalImpl owner, AclImpl acl)Build the Acl entries from the syntactic tree.
if (children != null) {
for (int i = 0; i < children.length; ++i) {
SimpleNode n = (SimpleNode)children[i];
if (n != null) {
n.buildAclEntries(owner, acl);
}
} /* end of loop */
}
|
public void | buildInformEntries(java.util.Hashtable dest)Build the Inform entries from the syntactic tree.
if (children != null) {
for (int i = 0; i < children.length; ++i) {
SimpleNode n = (SimpleNode)children[i];
if (n != null) {
n.buildInformEntries(dest);
}
} /* end of loop */
}
|
public void | buildTrapEntries(java.util.Hashtable dest)Build the Trap entries from the syntactic tree.
if (children != null) {
for (int i = 0; i < children.length; ++i) {
SimpleNode n = (SimpleNode)children[i];
if (n != null) {
n.buildTrapEntries(dest);
}
} /* end of loop */
}
|
public void | dump(java.lang.String prefix)
if (children != null) {
for (int i = 0; i < children.length; ++i) {
SimpleNode n = (SimpleNode)children[i];
if (n != null) {
n.dump(prefix + " ");
}
}
}
|
public void | jjtAddChild(Node n, int i)
if (children == null) {
children = new Node[i + 1];
} else if (i >= children.length) {
Node c[] = new Node[i + 1];
System.arraycopy(children, 0, c, 0, children.length);
children = c;
}
children[i] = n;
|
public void | jjtClose()
|
public static Node | jjtCreate(int id)
return new SimpleNode(id);
|
public static Node | jjtCreate(Parser p, int id)
return new SimpleNode(p, id);
|
public Node | jjtGetChild(int i)
return children[i];
|
public int | jjtGetNumChildren()
return (children == null) ? 0 : children.length;
|
public Node | jjtGetParent() return parent;
|
public void | jjtOpen()
|
public void | jjtSetParent(Node n) parent = n;
|
public java.lang.String | toString() return ParserTreeConstants.jjtNodeName[id];
|
public java.lang.String | toString(java.lang.String prefix) return prefix + toString();
|