Package org.cytoscape.io.write
Interface VizmapWriterFactory
- All Superinterfaces:
CyFileFilterProvider,CyWriterFactory
A specialization of
CyWriterFactory that allows a VisualStyle to
be specified and written.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 TypeMethodDescriptioncreateWriter(OutputStream os, Set<VisualStyle> networkStyles) Creates a single Task that will write the specified set ofVisualStyleobjects to the specified OutputStream.default CyWritercreateWriter(OutputStream os, Set<VisualStyle> networkStyles, Set<VisualStyle> tableStyles) Creates a single Task that will write the specified set ofVisualStyleobjects to the specified OutputStream.default CyWritercreateWriter(OutputStream os, Set<VisualStyle> networkStyles, Set<VisualStyle> tableStyles, Set<StyleAssociation> columnStyleAssociations) Creates a single Task that will write the specified set ofVisualStyleobjects to the specified OutputStream.Methods inherited from interface org.cytoscape.io.CyFileFilterProvider
getFileFilter
-
Method Details
-
createWriter
Creates a single Task that will write the specified set ofVisualStyleobjects to the specified OutputStream.- Parameters:
os- The stream to which the data will be written.networkStyles- A list of networkVisualStyleobjects to be written.
-
createWriter
default CyWriter createWriter(OutputStream os, Set<VisualStyle> networkStyles, Set<VisualStyle> tableStyles) Creates a single Task that will write the specified set ofVisualStyleobjects to the specified OutputStream.- Parameters:
os- The stream to which the data will be written.networkStyles- A list of networkVisualStyleobjects to be written.tableStyles- A list of tableVisualStyleobjects to be written.- Since:
- 3.9
-
createWriter
default CyWriter createWriter(OutputStream os, Set<VisualStyle> networkStyles, Set<VisualStyle> tableStyles, Set<StyleAssociation> columnStyleAssociations) Creates a single Task that will write the specified set ofVisualStyleobjects to the specified OutputStream.- Parameters:
os- The stream to which the data will be written.networkStyles- A list of networkVisualStyleobjects to be written.tableStyles- A list of tableVisualStyleobjects to be written.columnStyleAssociations- A list ofStyleAssociationobjects to be written.- Since:
- 3.9
-