Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,14 @@ public boolean isInverted() {
return inverted;
}

/**
* Returns, whether the vertex characteristics list selector is recursive
* @return Returns true, if the vertex characteristics list selector is recursive. Otherwise, this method returns false
*/
public boolean isRecursive() {
return recursive;
}

/**
* Returns the vertex characteristics stored in the vertex characteristic list selector
* @return Returns the {@link CharacteristicsSelectorData} stored in the selector
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,14 @@ public boolean isInverted() {
return inverted;
}

/**
* Returns, whether the vertex characteristics selector is recursive
* @return Returns true, if the vertex characteristics selector is recursive. Otherwise, this method returns false
*/
public boolean isRecursive() {
return recursive;
}

/**
* Returns the vertex characteristic stored in the vertex characteristic selector
* @return Returns the {@link CharacteristicsSelectorData} stored in the selector
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,12 @@ public VertexType getVertexType() {
public boolean isInverted() {
return inverted;
}

/**
* Returns, whether the vertex type selector is recursive
* @return Returns true, if the vertex type selector is recursive. Otherwise, this method returns false
*/
public boolean isRecursive() {
return recursive;
}
}
Loading