Class DataImportFinishedEvent<T>

  • Type Parameters:
    T - the generic type of the object associated with this DataImportFinishedEvent.
    All Implemented Interfaces:
    CyEvent<WebServiceClient>

    public final class DataImportFinishedEvent<T>
    extends AbstractCyEvent<WebServiceClient>
    An event indicating that data has been successfully imported.

    Module: webservice-api

    To use this in your app, include the following dependency in your POM:

    <dependency>
        <groupId>org.cytoscape</groupId>
        <artifactId>webservice-api</artifactId>
    </dependency>

    Cytoscape Backwards Compatibility (Final Class): This class is final and therefore can't 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 Detail

      • DataImportFinishedEvent

        public DataImportFinishedEvent​(WebServiceClient source,
                                       T imported)
        Constructs the event.
        Parameters:
        source - the source of the object that was imported.
        imported - the object that was imported.
    • Method Detail

      • getImportedObject

        public T getImportedObject()
        Returns the object that was imported.
        Returns:
        the object that was imported.