use of org.cytoscape.ding.customgraphicsmgr.internal.CGComparator in project cytoscape-impl by cytoscape.
the class CustomGraphicsRange method values.
@Override
public Set<CyCustomGraphics> values() {
Set<CyCustomGraphics> sortedSet = new TreeSet<>(new CGComparator());
sortedSet.addAll(manager.getAllCustomGraphics());
return sortedSet;
}
Aggregations