Package org.cytoscape.io.read
Interface VizmapReader
-
- All Superinterfaces:
Task
public interface VizmapReader extends Task
An extension of the Task interface that returns aVisualStyle
object. Instances of this interface are created byInputStreamTaskFactory
objects registered as OSGi services, which are in turn processed by associated reader manager objects that distinguish InputStreamTaskFactories based on theDataCategory
associated with theCyFileFilter
.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>
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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<VisualStyle>
getVisualStyles()
Returns a list ofVisualStyle
objects.
-
-
-
Method Detail
-
getVisualStyles
Set<VisualStyle> getVisualStyles()
Returns a list ofVisualStyle
objects.- Returns:
- A list of
VisualStyle
objects.
-
-