Package org.cytoscape.task
Class AbstractTableTask
java.lang.Object
org.cytoscape.work.AbstractTask
org.cytoscape.task.AbstractTableTask
- All Implemented Interfaces:
Task
A base class for Tasks that need to operate on an entire
CyTable
.Cytoscape Backwards Compatibility (Abstract Class): This class is abstract and meant to be extended by users. This means that we may add methods for minor version updates. Methods will only be removed for major version updates.
Module: core-task-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>core-task-api</artifactId> </dependency>
-
Field Summary
Modifier and TypeFieldDescriptionprotected CyTable
The table that descendants of this class will operate on.Fields inherited from class org.cytoscape.work.AbstractTask
cancelled
-
Constructor Summary
ConstructorDescriptionAbstractTableTask(CyTable table)
Initializes a Task that needs to operate on aCyTable
. -
Method Summary
Methods inherited from class org.cytoscape.work.AbstractTask
cancel, getTaskIterator, insertTasksAfterCurrentTask, insertTasksAfterCurrentTask, run, setTaskIterator
-
Field Details
-
table
The table that descendants of this class will operate on.
-
-
Constructor Details
-
AbstractTableTask
Initializes a Task that needs to operate on aCyTable
.- Parameters:
table
- a non-null CyTable
-