Package org.cytoscape.task
Class AbstractEdgeViewTaskFactory
java.lang.Object
org.cytoscape.task.AbstractEdgeViewTaskFactory
- All Implemented Interfaces:
EdgeViewTaskFactory
An EdgeViewTaskFactory that is always ready to produce a TaskIterator.
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>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
isReady(View<CyEdge> edgeView, CyNetworkView networkView)
Returns true if the supplied edge and network views are 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.EdgeViewTaskFactory
createTaskIterator, isOn
-
Constructor Details
-
AbstractEdgeViewTaskFactory
public AbstractEdgeViewTaskFactory()
-
-
Method Details
-
isReady
Returns true if the supplied edge and network views are not null.- Specified by:
isReady
in interfaceEdgeViewTaskFactory
- Parameters:
edgeView
- The edge view.networkView
- The network view.- Returns:
- true if the supplied edge and network views are not null.
-