Class ASTStoredDefinition
- java.lang.Object
-
- net.sourceforge.pmd.lang.ast.impl.AbstractNode<B,N>
-
- net.sourceforge.pmd.lang.ast.impl.javacc.AbstractJjtreeNode<net.sourceforge.pmd.lang.modelica.ast.AbstractModelicaNode,ModelicaNode>
-
- net.sourceforge.pmd.lang.modelica.ast.ASTStoredDefinition
-
- All Implemented Interfaces:
net.sourceforge.pmd.lang.ast.impl.GenericNode<ModelicaNode>
,net.sourceforge.pmd.lang.ast.impl.javacc.JjtreeNode<ModelicaNode>
,net.sourceforge.pmd.lang.ast.Node
,net.sourceforge.pmd.lang.ast.RootNode
,net.sourceforge.pmd.lang.ast.TextAvailableNode
,ModelicaNode
,net.sourceforge.pmd.reporting.Reportable
public class ASTStoredDefinition extends net.sourceforge.pmd.lang.ast.impl.javacc.AbstractJjtreeNode<net.sourceforge.pmd.lang.modelica.ast.AbstractModelicaNode,ModelicaNode> implements net.sourceforge.pmd.lang.ast.RootNode
A representation of a Modelica source code file.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected <P,R>
RacceptModelicaVisitor(ModelicaVisitor<? super P,? extends R> visitor, P data)
<P,R>
RacceptVisitor(net.sourceforge.pmd.lang.ast.AstVisitor<? super P,? extends R> visitor, P data)
net.sourceforge.pmd.lang.ast.AstInfo<ASTStoredDefinition>
getAstInfo()
ModelicaScope
getContainingScope()
Returns the lexical scope this node is contained in.boolean
getHasBOM()
Returns whether this source file contains Byte Order Mark.ModelicaScope
getMostSpecificScope()
Returns the most specific lexical scope naturally associated with this node.String
getName()
String
getXPathNodeName()
-
Methods inherited from class net.sourceforge.pmd.lang.ast.impl.javacc.AbstractJjtreeNode
addChild, compareLocation, enlargeLeft, fitTokensToChildren, getFirstToken, getImage, getLastToken, getTextRegion, insertChild, jjtClose, jjtOpen, setFirstToken, setImage, setLastToken, toString
-
Methods inherited from class net.sourceforge.pmd.lang.ast.impl.AbstractNode
children, firstChild, getChild, getIndexInParent, getNumChildren, getParent, getUserMap, remove, removeChildAtIndex, setChild, setParent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sourceforge.pmd.lang.ast.impl.GenericNode
ancestors, ancestorsOrSelf, asStream, children, descendants, descendantsOrSelf, getChild, getFirstChild, getLastChild, getNextSibling, getParent, getPreviousSibling
-
Methods inherited from interface net.sourceforge.pmd.lang.ast.impl.javacc.JjtreeNode
getFirstToken, getLastToken, tokens
-
Methods inherited from interface net.sourceforge.pmd.lang.ast.Node
acceptVisitor, ancestors, children, compareLocation, descendants, firstChild, getBeginColumn, getBeginLine, getEndColumn, getEndLine, getImage, getIndexInParent, getLanguageVersion, getNumChildren, getReportLocation, getRoot, getTextDocument, getUserMap, getXPathAttributesIterator, getXPathNodeName, hasImageEqualTo, isFindBoundary
-
-
-
-
Method Detail
-
acceptModelicaVisitor
protected <P,R> R acceptModelicaVisitor(ModelicaVisitor<? super P,? extends R> visitor, P data)
-
getAstInfo
public net.sourceforge.pmd.lang.ast.AstInfo<ASTStoredDefinition> getAstInfo()
- Specified by:
getAstInfo
in interfacenet.sourceforge.pmd.lang.ast.Node
- Specified by:
getAstInfo
in interfacenet.sourceforge.pmd.lang.ast.RootNode
-
getHasBOM
public boolean getHasBOM()
Returns whether this source file contains Byte Order Mark.
-
getName
public String getName()
-
acceptVisitor
public final <P,R> R acceptVisitor(net.sourceforge.pmd.lang.ast.AstVisitor<? super P,? extends R> visitor, P data)
- Specified by:
acceptVisitor
in interfacenet.sourceforge.pmd.lang.ast.Node
-
getXPathNodeName
public String getXPathNodeName()
- Specified by:
getXPathNodeName
in interfacenet.sourceforge.pmd.lang.ast.Node
-
getContainingScope
public ModelicaScope getContainingScope()
Description copied from interface:ModelicaNode
Returns the lexical scope this node is contained in.- Specified by:
getContainingScope
in interfaceModelicaNode
-
getMostSpecificScope
public ModelicaScope getMostSpecificScope()
Description copied from interface:ModelicaNode
Returns the most specific lexical scope naturally associated with this node.- Specified by:
getMostSpecificScope
in interfaceModelicaNode
- Returns:
- the scope defined by this node itself or the same as
ModelicaNode.getContainingScope()
otherwise
-
-