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
/
NodeWithRange
Node
With
Range
interface
NodeWithRange
<
N
>
(
source
)
A node that has a Range, which is every Node.
Inheritors
Node
Members
Functions
contains
Within
Link copied to clipboard
open
fun
containsWithin
(
other
:
Node
)
:
Boolean
contains
Within
Range
Link copied to clipboard
open
fun
containsWithinRange
(
other
:
Node
)
:
Boolean
Checks whether the range of the given
Node
is contained within the range of this
NodeWithRange
.
get
Begin
Link copied to clipboard
open
fun
getBegin
(
)
:
Optional
<
Position
>
The begin position of this node in the source file.
get
End
Link copied to clipboard
open
fun
getEnd
(
)
:
Optional
<
Position
>
The end position of this node in the source file.
get
Range
Link copied to clipboard
abstract
fun
getRange
(
)
:
Optional
<
Range
>
has
Range
Link copied to clipboard
open
fun
hasRange
(
)
:
Boolean
set
Range
Link copied to clipboard
abstract
fun
setRange
(
range
:
Range
)
:
N