use of edu.ucsf.rbvi.clusterMaker2.internal.ui.NetworkSelectionLinker in project clusterMaker2 by RBVI.
the class ClusterManagerImpl method linkNetworkSelection.
public void linkNetworkSelection(CyNetwork network) {
if (isLinked(network))
return;
CyRootNetwork rootNetwork = ((CySubNetwork) network).getRootNetwork();
CyEventHelper helper = serviceRegistrar.getService(CyEventHelper.class);
NetworkSelectionLinker linker = new NetworkSelectionLinker(rootNetwork, helper, this);
registerService(linker, RowsSetListener.class, new Properties());
linkedNetworks.put(rootNetwork, linker);
}
Aggregations