Package org.cytoscape.view.vizmap.gui
Interface MappingFunctionFactoryManager
public interface MappingFunctionFactoryManager
Manages factories to create actual mappings (discrete/passthrough/continuous).
Module: vizmap-gui-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>vizmap-gui-api</artifactId> </dependency>
Cytoscape Backwards Compatibility (API Interface): We expect that this interface will be used but not implemented by developers using this interface. As such, we reserve the right to add methods to the interface as part of minor version upgrades. We will not remove methods for any changes other than major version upgrades.
-
Method Summary
Modifier and TypeMethodDescriptionReturns all available factories.getFactory(Class<?> mappingType)
Factory for the specific mapping type.
-
Method Details
-
getFactories
Collection<VisualMappingFunctionFactory> getFactories()Returns all available factories.- Returns:
- all mapping function factories.
-
getFactory
Factory for the specific mapping type.- Parameters:
mappingType
-- Returns:
- mapping factory for the given mapping type.
-