Package org.cytoscape.task
Class AbstractTableColumnTaskFactory
- java.lang.Object
-
- org.cytoscape.task.AbstractTableColumnTaskFactory
-
- All Implemented Interfaces:
TableColumnTaskFactory
public abstract class AbstractTableColumnTaskFactory extends Object implements TableColumnTaskFactory
A TableColumnTaskFactory that is always ready to produce a TaskIterator.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.
-
-
Constructor Summary
Constructors Constructor Description AbstractTableColumnTaskFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isReady(CyColumn column)
Returns true if the supplied column is not null.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.cytoscape.task.TableColumnTaskFactory
createTaskIterator
-
-
-
-
Method Detail
-
isReady
public boolean isReady(CyColumn column)
Returns true if the supplied column is not null.- Specified by:
isReady
in interfaceTableColumnTaskFactory
- Parameters:
column
- The table column.- Returns:
- true if the supplied column is not null.
-
-