Package org.cytoscape.task
Class AbstractRowTask
- java.lang.Object
-
- org.cytoscape.work.AbstractTask
-
- org.cytoscape.task.AbstractRowTask
-
- All Implemented Interfaces:
Task
public abstract class AbstractRowTask extends AbstractTask
Base class for all tasks that need to operate on aCyRow
.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>
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.
-
-
Field Summary
Fields Modifier and Type Field Description protected CyRow
row
The row that descendants will operate on.-
Fields inherited from class org.cytoscape.work.AbstractTask
cancelled
-
-
Constructor Summary
Constructors Constructor Description AbstractRowTask(CyRow row)
Base class constructor for all tasks that need to be provisioned with a CyRow.
-
Method Summary
-
Methods inherited from class org.cytoscape.work.AbstractTask
cancel, getTaskIterator, insertTasksAfterCurrentTask, insertTasksAfterCurrentTask, run, setTaskIterator
-
-
-
-
Field Detail
-
row
protected final CyRow row
The row that descendants will operate on.
-
-
Constructor Detail
-
AbstractRowTask
public AbstractRowTask(CyRow row)
Base class constructor for all tasks that need to be provisioned with a CyRow.- Parameters:
row
- a non-null CyRow that descendants will operate on
-
-