Package org.cytoscape.io.read
Interface VizmapReader
- All Superinterfaces:
Task
An extension of the Task interface that returns a
VisualStyle
object.
Instances of this interface are created by InputStreamTaskFactory
objects registered as OSGi services, which are in turn processed
by associated reader manager objects that distinguish
InputStreamTaskFactories based on the DataCategory
associated with
the CyFileFilter
.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: io-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>io-api</artifactId> </dependency>
-
Method Summary
Modifier and TypeMethodDescriptiondefault Set<StyleAssociation>
Returns a list of tableVisualStyle
objects.Returns a list of networkVisualStyle
objects.
-
Method Details
-
getVisualStyles
Set<VisualStyle> getVisualStyles()Returns a list of networkVisualStyle
objects.- Returns:
- A list of network
VisualStyle
objects.
-
getTableVisualStyles
Set<VisualStyle> getTableVisualStyles()Returns a list of tableVisualStyle
objects.- Returns:
- A list of table
VisualStyle
objects.
-
getColumnStyleAssociations
-