Interface NodeWithOptionalScope<N extends Node>
-
- All Known Implementing Classes:
MethodCallExpr
,ObjectCreationExpr
public interface NodeWithOptionalScope<N extends Node>
Represents a node which has an optional scope expression eg. method calls (object.method()).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<Expression>
getScope()
N
removeScope()
N
setScope(Expression scope)
-
-
-
Method Detail
-
getScope
Optional<Expression> getScope()
-
setScope
N setScope(Expression scope)
-
removeScope
N removeScope()
-
-