jmlparser-parent
Toggle table of contents
3.28.2-J8.0-K13.5-SNAPSHOT
java
Target filter
java
Switch theme
Search in API
Skip to content
jmlparser-parent
jmlparser-core
/
com.github.javaparser.ast.nodeTypes
/
NodeWithOptionalScope
Node
With
Optional
Scope
interface
NodeWithOptionalScope
<
N
:
Node
?
>
:
NodeWithTraversableScope
(
source
)
Represents a node which has an optional scope expression eg. method calls (object.method()).
Inheritors
MethodCallExpr
ObjectCreationExpr
Members
Functions
get
Scope
Link copied to clipboard
abstract
fun
getScope
(
)
:
Optional
<
Expression
>
remove
Scope
Link copied to clipboard
abstract
fun
removeScope
(
)
:
N
set
Scope
Link copied to clipboard
abstract
fun
setScope
(
scope
:
Expression
)
:
N
traverse
Scope
Link copied to clipboard
open
fun
traverseScope
(
)
:
Optional
<
Expression
>