Class SearchFinishedEvent<T>
- java.lang.Object
-
- org.cytoscape.event.AbstractCyEvent<WebServiceClient>
-
- org.cytoscape.io.webservice.events.SearchFinishedEvent<T>
-
- Type Parameters:
T
- The type of the search result.
- All Implemented Interfaces:
CyEvent<WebServiceClient>
public final class SearchFinishedEvent<T> extends AbstractCyEvent<WebServiceClient>
An event that indicates a search has completed.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 Summary
Constructors Constructor Description SearchFinishedEvent(WebServiceClient source, T result)
Constructs the event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getSearchResult()
Returns The search result.-
Methods inherited from class org.cytoscape.event.AbstractCyEvent
getListenerClass, getSource
-
-
-
-
Constructor Detail
-
SearchFinishedEvent
public SearchFinishedEvent(WebServiceClient source, T result)
Constructs the event.- Parameters:
source
- the source object firing the event.result
- the search result object.
-
-
Method Detail
-
getSearchResult
public T getSearchResult()
Returns The search result.- Returns:
- The search result.
-
-