public final class NamedAugmentation extends GoloElement implements FunctionContainer
Modifier and Type | Method and Description |
---|---|
void |
accept(GoloIrVisitor visitor)
Accept the visitor.
|
NamedAugmentation |
add(java.lang.Object fun) |
void |
addFunction(GoloFunction func) |
void |
addFunctions(java.util.Collection<GoloFunction> funcs) |
java.util.Set<GoloFunction> |
getFunctions() |
java.lang.String |
getName() |
PackageAndClass |
getPackageAndClass() |
boolean |
hasFunctions() |
NamedAugmentation |
ofAST(GoloASTNode node) |
protected void |
replaceElement(GoloElement original,
GoloElement newElement)
Replace a child.
|
void |
walk(GoloIrVisitor visitor)
Walk the visitor through this node children.
|
cantConvert, cantReplace, cantReplace, doesNotContain, getASTNode, getDocumentation, getLocalReferenceTable, getParentNode, getPositionInSourceCode, hasASTNode, makeParentOf, replaceInParentBy, setASTNode, setParentNode
public java.lang.String getName()
public PackageAndClass getPackageAndClass()
public NamedAugmentation ofAST(GoloASTNode node)
ofAST
in class GoloElement
public java.util.Set<GoloFunction> getFunctions()
getFunctions
in interface FunctionContainer
public void addFunction(GoloFunction func)
addFunction
in interface FunctionContainer
public void addFunctions(java.util.Collection<GoloFunction> funcs)
addFunctions
in interface FunctionContainer
public boolean hasFunctions()
hasFunctions
in interface FunctionContainer
public NamedAugmentation add(java.lang.Object fun)
public void accept(GoloIrVisitor visitor)
GoloElement
This method should only call the visitor visitXXXX
method.
The children of this node will be visited by the
GoloElement.walk(GoloIrVisitor)
method.
accept
in class GoloElement
public void walk(GoloIrVisitor visitor)
GoloElement
walk
in class GoloElement
protected void replaceElement(GoloElement original, GoloElement newElement)
GoloElement
Replace original
with newElement
if original
is a child of this node
and type matches.
replaceElement
in class GoloElement
original
- the original value to replace. Must be a child of this nodenewElement
- the element to replace with. Type must match.GoloElement.cantReplace()
,
GoloElement.cantReplace(GoloElement, GoloElement)
,
GoloElement.doesNotContain(GoloElement)
,
GoloElement.cantConvert(String, Object)