| java.lang.Object org.openrdf.query.parser.serql.ast.SimpleNode
All known Subclasses: org.openrdf.query.parser.serql.ast.ASTFrom, org.openrdf.query.parser.serql.ast.ASTEdge, org.openrdf.query.parser.serql.ast.ASTQueryBody, org.openrdf.query.parser.serql.ast.ASTLimit, org.openrdf.query.parser.serql.ast.ASTNode, org.openrdf.query.parser.serql.ast.ASTPathExpr, org.openrdf.query.parser.serql.ast.ASTPathExprTail, org.openrdf.query.parser.serql.ast.ASTValueExpr, org.openrdf.query.parser.serql.ast.ASTReifiedStat, org.openrdf.query.parser.serql.ast.ASTOffset, org.openrdf.query.parser.serql.ast.ASTWhere, org.openrdf.query.parser.serql.ast.ASTQueryContainer, org.openrdf.query.parser.serql.ast.ASTConstruct, org.openrdf.query.parser.serql.ast.ASTBooleanExpr, org.openrdf.query.parser.serql.ast.ASTQuery, org.openrdf.query.parser.serql.ast.ASTProjectionElem, org.openrdf.query.parser.serql.ast.ASTString, org.openrdf.query.parser.serql.ast.ASTNamespaceDecl, org.openrdf.query.parser.serql.ast.ASTNodeElem, org.openrdf.query.parser.serql.ast.ASTSelect, org.openrdf.query.parser.serql.ast.ASTCompOperator,
SimpleNode | public class SimpleNode implements Node(Code) | | |
SimpleNode | public SimpleNode(int id)(Code) | | |
dump | public void dump(String prefix, Appendable out) throws IOException(Code) | | Writes a tree-like representation of this node and all of its subnodes
(recursively) to the supplied Appendable.
|
dump | public String dump(String prefix)(Code) | | Writes a tree-like representation of this node and all of its subnodes
(recursively) and returns it as a string.
|
jjtAddChild | public void jjtAddChild(Node n, int i)(Code) | | |
jjtAppendChild | public void jjtAppendChild(Node n)(Code) | | |
jjtClose | public void jjtClose()(Code) | | |
jjtGetChild | public T jjtGetChild(Class<T> type)(Code) | | Gets the (first) child of this node that is of the specific type.
Parameters: type - The type of the child node that should be returned. The (first) child node of the specified type, or nullif no such child node was found. |
jjtGetNumChildren | public int jjtGetNumChildren()(Code) | | |
jjtInsertChild | public void jjtInsertChild(Node n, int i)(Code) | | |
jjtOpen | public void jjtOpen()(Code) | | |
jjtReplaceChild | public void jjtReplaceChild(Node oldNode, Node newNode)(Code) | | |
jjtReplaceWith | public void jjtReplaceWith(Node newNode)(Code) | | Replaces this node with the supplied one in the AST.
Parameters: newNode - The replacement node. |
jjtSetParent | public void jjtSetParent(Node n)(Code) | | |
|
|