Interface Node
- 
- All Known Implementing Classes:
- ASTAbs,- ASTAdd,- ASTAggregate,- ASTAnd,- ASTAskQuery,- ASTAvg,- ASTBaseDecl,- ASTBasicGraphPattern,- ASTBind,- ASTBindingsClause,- ASTBindingSet,- ASTBindingValue,- ASTBlankNode,- ASTBlankNodePropertyList,- ASTBNodeFunc,- ASTBound,- ASTCeil,- ASTClear,- ASTCoalesce,- ASTCollection,- ASTCompare,- ASTConcat,- ASTConstraint,- ASTConstruct,- ASTConstructQuery,- ASTConstTripleRef,- ASTContains,- ASTCopy,- ASTCount,- ASTCreate,- ASTDatasetClause,- ASTDatatype,- ASTDay,- ASTDeleteClause,- ASTDeleteData,- ASTDeleteWhere,- ASTDescribe,- ASTDescribeQuery,- ASTDrop,- ASTEncodeForURI,- ASTExistsFunc,- ASTFalse,- ASTFloor,- ASTFunctionCall,- ASTGraphGraphPattern,- ASTGraphOrDefault,- ASTGraphPatternGroup,- ASTGraphRefAll,- ASTGroupClause,- ASTGroupConcat,- ASTGroupCondition,- ASTHavingClause,- ASTHours,- ASTIf,- ASTIn,- ASTInfix,- ASTInlineData,- ASTInsertClause,- ASTInsertData,- ASTIRI,- ASTIRIFunc,- ASTIsBlank,- ASTIsIRI,- ASTIsLiteral,- ASTIsNumeric,- ASTLang,- ASTLangMatches,- ASTLimit,- ASTLoad,- ASTLowerCase,- ASTMath,- ASTMax,- ASTMD5,- ASTMin,- ASTMinusGraphPattern,- ASTMinutes,- ASTModify,- ASTMonth,- ASTMove,- ASTNot,- ASTNotExistsFunc,- ASTNotIn,- ASTNow,- ASTNumericLiteral,- ASTObjectList,- ASTOffset,- ASTOperation,- ASTOperationContainer,- ASTOptionalGraphPattern,- ASTOr,- ASTOrderClause,- ASTOrderCondition,- ASTPathAlternative,- ASTPathElt,- ASTPathMod,- ASTPathNegatedPropertySet,- ASTPathOneInPropertySet,- ASTPathSequence,- ASTPrefixDecl,- ASTProjectionElem,- ASTPropertyList,- ASTPropertyListPath,- ASTQName,- ASTQuadsNotTriples,- ASTQuery,- ASTQueryContainer,- ASTRand,- ASTRDFLiteral,- ASTRDFValue,- ASTRegexExpression,- ASTReplace,- ASTRound,- ASTSameTerm,- ASTSample,- ASTSeconds,- ASTSelect,- ASTSelectQuery,- ASTServiceGraphPattern,- ASTSHA1,- ASTSHA224,- ASTSHA256,- ASTSHA384,- ASTSHA512,- ASTStr,- ASTStrAfter,- ASTStrBefore,- ASTStrDt,- ASTStrEnds,- ASTString,- ASTStrLang,- ASTStrLen,- ASTStrStarts,- ASTSTRUUID,- ASTSubstr,- ASTSum,- ASTTimezone,- ASTTripleRef,- ASTTriplesSameSubject,- ASTTriplesSameSubjectPath,- ASTTrue,- ASTTz,- ASTUnionGraphPattern,- ASTUnparsedQuadDataBlock,- ASTUpdate,- ASTUpdateContainer,- ASTUpdateSequence,- ASTUpperCase,- ASTUUID,- ASTVar,- ASTWhereClause,- ASTYear,- SimpleNode
 
 public interface Node
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetId()ObjectjjtAccept(SyntaxTreeBuilderVisitor visitor, Object data)Accept the visitor.voidjjtAddChild(Node n, int i)This method tells the node to add its argument to the node's list of children.voidjjtAppendChild(Node n)Adds the supplied node as the last child node to this node.voidjjtClose()This method is called after all the child nodes have been added.NodejjtGetChild(int i)This method returns a child node.intjjtGetNumChildren()Return the number of children the node has.NodejjtGetParent()voidjjtOpen()This method is called after the node has been made the current node.voidjjtReplaceChild(Node oldNode, Node newNode)Replaces a child node with a new node.voidjjtSetParent(Node n)This pair of methods are used to inform the node of its parent.
 
- 
- 
- 
Method Detail- 
jjtOpenvoid jjtOpen() This method is called after the node has been made the current node. It indicates that child nodes can now be added to it.
 - 
jjtClosevoid jjtClose() This method is called after all the child nodes have been added.
 - 
jjtSetParentvoid jjtSetParent(Node n) This pair of methods are used to inform the node of its parent.
 - 
jjtGetParentNode jjtGetParent() 
 - 
jjtAddChildvoid jjtAddChild(Node n, int i) This method tells the node to add its argument to the node's list of children.
 - 
jjtGetChildNode jjtGetChild(int i) This method returns a child node. The children are numbered from zero, left to right.
 - 
jjtGetNumChildrenint jjtGetNumChildren() Return the number of children the node has.
 - 
getIdint getId() 
 - 
jjtAcceptObject jjtAccept(SyntaxTreeBuilderVisitor visitor, Object data) throws VisitorException Accept the visitor.- Throws:
- VisitorException
 
 - 
jjtAppendChildvoid jjtAppendChild(Node n) Adds the supplied node as the last child node to this node.
 
- 
 
-