hasLabel method for mindmap
This commit is contained in:
committed by
Ezequiel Bergamaschi
parent
7d9ccaec91
commit
684c412e95
@@ -317,4 +317,13 @@ public class Mindmap {
|
||||
return result;
|
||||
|
||||
}
|
||||
|
||||
public boolean hasLabel(@NotNull final String name) {
|
||||
for (Label label : this.labels) {
|
||||
if (label.getTitle().equals(name)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user