Package org.cytoscape.filter.model
Interface ElementTransformerFactory<C,E>
- Type Parameters:
C- The context type of the elements this factory is compatible with.E- The element type this factory is compatible with.
- All Superinterfaces:
TransformerFactory<C,E>
A factory for creating
ElementTransformers.Cytoscape Backwards Compatibility (SPI Interface): We expect that this interface will be implemented. Therefore to maintain backwards compatibility this interface will only be modified for major version updates.
Module: filter-api
To use this in your app, include the following dependency in your POM:
<dependency>
<groupId>org.cytoscape</groupId>
<artifactId>filter-api</artifactId>
</dependency>-
Method Summary
Modifier and TypeMethodDescriptionReturns a newElementTransformerwith the same id as this factory.Methods inherited from interface org.cytoscape.filter.model.TransformerFactory
getId
-
Method Details
-
createElementTransformer
ElementTransformer<C,E> createElementTransformer()Returns a newElementTransformerwith the same id as this factory.- Returns:
- a new
ElementTransformer.
-