Package org.cytoscape.io.write
This package provides factory interfaces to be used by anyone wishing to provide
export or writing capabilities to the rest of Cytoscape. To provide writing
capabilities an App writer will implement an instance of CyWriterFactory that
creates a fully configured task. Part of implementing CyWriterFactory involves
providing a CyFileFilter, an interface used to define file extensions and types
of data that can be written.
This package is useful primarily when used within the Task/TaskFactory framework used throughout Cytoscape. To simply write files from an App, consult the interfaces found in the Core Task API (org.cytoscape.task.*).
This package is useful primarily when used within the Task/TaskFactory framework used throughout Cytoscape. To simply write files from an App, consult the interfaces found in the Core Task API (org.cytoscape.task.*).
-
Interface Summary Interface Description CyNetworkViewWriterFactory A specialization ofCyWriterFactory
that allows aCyNetworkView
orCyNetwork
to be specified and written to an OutputStream.CyNetworkViewWriterManager ACyWriterManager
specific to writingCyNetworkView
objects.CyPropertyWriterFactory A specialization ofCyWriterFactory
that allows a property Object to be specified and written.CyPropertyWriterManager ACyWriterManager
specific to writing property objects.CySessionWriterFactory A specialization ofCyWriterFactory
that allows aCySession
to be specified and written.CySessionWriterManager ACyWriterManager
specific to writingCySession
objects.CyTableWriterFactory A specialization ofCyWriterFactory
that allows aCyTable
to be specified and written.CyTableWriterManager ACyWriterManager
specific to writingCyTable
objects.CyTransformerWriter CyWriter A marker interface used to identify tasks involved in writing data.CyWriterFactory A marker interface used to identify factories that create CyWriter instances.CyWriterManager<W extends CyWriterFactory> A CyWriterManager aggregatesCyWriterFactory
services for specific DataCategories and provides a mechanism for choosing theCyWriterFactory
given a particular file type.PresentationWriterFactory A specialization ofCyWriterFactory
that allows a View rendered by the specifiedRenderingEngine
to be specified and written.PresentationWriterManager ACyWriterManager
specific to writing View objects.VizmapWriterFactory A specialization ofCyWriterFactory
that allows aVisualStyle
to be specified and written.VizmapWriterManager ACyWriterManager
specific to writingVisualStyle
objects.