Uses of Interface
org.cytoscape.filter.model.Transformer
Packages that use Transformer
Package
Description
Provides interfaces for constructing and executing
Transformers and
Filters.Provides interfaces and classes for defining
Transformers and
Filters.Provides interfaces for contributing user interfaces for
Transformers to
Cytoscape.-
Uses of Transformer in org.cytoscape.filter
Methods in org.cytoscape.filter that return TransformerModifier and TypeMethodDescription<C,E> Transformer<C, E> TransformerManager.createTransformer(String id) Returns a new Transformer with the givenid.Methods in org.cytoscape.filter with parameters of type TransformerModifier and TypeMethodDescription<C,E> void TransformerManager.execute(C context, Transformer<C, E> transformer, TransformerSink<E> sink) Appliestransformerto thecontext.Method parameters in org.cytoscape.filter with type arguments of type TransformerModifier and TypeMethodDescription<C,E> NamedTransformer<C, E> TransformerManager.createNamedTransformer(String name, List<Transformer<C, E>> transformers) Returns a newNamedTransformerwith the given name and list of transformers.<C,E> void TransformerManager.execute(C context, List<Transformer<C, E>> transformers, TransformerSink<E> sink) Applies the given chain oftransformersto thecontext.<C,E> void TransformerManager.execute(C context, TransformerSource<C, E> source, List<Transformer<C, E>> transformers, TransformerSink<E> sink) Applies the given chain oftransformersto thecontext, viasource. -
Uses of Transformer in org.cytoscape.filter.model
Subinterfaces of Transformer in org.cytoscape.filter.modelModifier and TypeInterfaceDescriptioninterfaceCompositeFilter<C,E> interfaceElementTransformer<C,E> A transformer that transforms its input one element at a time and pushes the results into the given sink.interfaceFilter<C,E> A transformer that decides whether to accept or reject elements.interfaceHolisticTransformer<C,E> A transformer that takes its input altogether, transforms it, and pushes the results into the given sink.interfaceSubFilterTransformer<C,E> ATransformerthat contains aCompositeFilterthat it uses to filter its output.interfaceA marker interface that can be added to anyTransformerto indicate that the transformer may be invalid in certain contexts.Classes in org.cytoscape.filter.model that implement TransformerModifier and TypeClassDescriptionclassAbstractTransformer<C,E> A convenience base class for Transformers.classA convenience base class for ValidatableTransformers.Methods in org.cytoscape.filter.model that return types with arguments of type TransformerModifier and TypeMethodDescriptionList<Transformer<C,E>> NamedTransformer.getTransformers()Returns theListofTransformers contained within thisNamedTransformer. -
Uses of Transformer in org.cytoscape.filter.view
Methods in org.cytoscape.filter.view with parameters of type TransformerModifier and TypeMethodDescriptionTransformerViewFactory.createView(Transformer<?, ?> transformer) Creates a UI panel that configures the giventransformer.