use of org.cytoscape.view.presentation.annotations.Annotation in project cytoscape-impl by cytoscape.
the class CyAnnotator method removeAnnotations.
public void removeAnnotations(Collection<? extends Annotation> annotations) {
for (Annotation annotation : annotations) {
annotationMap.remove((DingAnnotation) annotation);
selectedAnnotations.remove(annotation);
}
updateNetworkAttributes(view.getModel());
}
Aggregations