use of org.cytoscape.app.internal.task.InstallAppsFromWebAppTask in project cytoscape-impl by cytoscape.
the class InstallAppsPanel method installButtonActionPerformed.
private void installButtonActionPerformed(ActionEvent evt) {
final WebQuerier webQuerier = appManager.getWebQuerier();
taskManager.setExecutionContext(parent);
taskManager.execute(new TaskIterator(new InstallAppsFromWebAppTask(Collections.singletonList(selectedApp), appManager, true)));
}
Aggregations