Package org.cytoscape.filter.view
Interface TransformerViewFactory
public interface TransformerViewFactory
A factory for making UI panels to configure a specific
Transformer.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 TypeMethodDescriptioncreateView(Transformer<?, ?> transformer) Creates a UI panel that configures the giventransformer.getId()Returns the unique id of theTransformerthis factory produces views for.
-
Method Details
-
getId
String getId()Returns the unique id of theTransformerthis factory produces views for.- Returns:
- the unique id of the
Transformerthis factory produces views for.
-
createView
Creates a UI panel that configures the giventransformer.- Parameters:
transformer- theTransformerto be configured.- Returns:
- a UI panel that configures the given
transformer.
-