use of org.cytoscape.view.vizmap.gui.internal.task.RemoveLockedValuesTask in project cytoscape-impl by cytoscape.
the class RemoveLockedValuesCommand method execute.
@Override
public void execute(final INotification notification) {
final LockedValuesVO vo = (LockedValuesVO) notification.getBody();
final Set<VisualProperty<?>> visualProperties = vo.getVisualProperties();
if (visualProperties == null)
return;
CyNetworkView netView = vo.getNetworkView();
Set<View<? extends CyIdentifiable>> views = vo.getViews();
final VizMapperProxy vmProxy = (VizMapperProxy) getFacade().retrieveProxy(VizMapperProxy.NAME);
if (netView == null)
netView = vmProxy.getCurrentNetworkView();
if (netView != null && views == null) {
// Get the selected views
final Set<Class<? extends CyIdentifiable>> targetDataTypes = new HashSet<Class<? extends CyIdentifiable>>();
for (final VisualProperty<?> vp : visualProperties) targetDataTypes.add(vp.getTargetDataType());
views = new HashSet<View<? extends CyIdentifiable>>();
if (targetDataTypes.contains(CyNode.class))
views.addAll(vmProxy.getSelectedNodeViews(netView));
if (targetDataTypes.contains(CyEdge.class))
views.addAll(vmProxy.getSelectedEdgeViews(netView));
if (targetDataTypes.contains(CyNetwork.class))
views.add(netView);
}
if (views != null) {
final TaskIterator iterator = new TaskIterator(new RemoveLockedValuesTask(visualProperties, views, netView, servicesUtil));
final DialogTaskManager taskManager = servicesUtil.get(DialogTaskManager.class);
taskManager.execute(iterator);
}
}
Aggregations