Interface TransformerContainer<C,E>

Type Parameters:
C - The context type for transformers this TransformerContainer contains.
E - The element type for transformers this TransformerContainer contains.

public interface TransformerContainer<C,E>
A class that contains and manages a list of Transformers. Typically these transformers will show up in the Select tab of the Cytoscape UI. How to acquire this service in your CyActivator:
 TransformerContainer<CyNetwork,CyIdentifiable> filterContainer = getService(TransformerContainer.class, "(container.type=filter)");
 TransformerContainer<CyNetwork,CyIdentifiable> chainTransformerContainer = getService(TransformerContainer.class, "(container.type=chain)");