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