Class AbstractTableTask

  • All Implemented Interfaces:
    Task

    public abstract class AbstractTableTask
    extends AbstractTask
    A base class for Tasks that need to operate on an entire CyTable.

    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 Detail

      • table

        protected final CyTable table
        The table that descendants of this class will operate on.
    • Constructor Detail

      • AbstractTableTask

        public AbstractTableTask​(CyTable table)
        Initializes a Task that needs to operate on a CyTable.
        Parameters:
        table - a non-null CyTable