public interface CySessionWriterManager extends CyWriterManager<CySessionWriterFactory>
CyWriterManager
specific to writing CySession
objects.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>
Modifier and Type | Method and Description |
---|---|
CyWriter |
getWriter(CySession session,
CyFileFilter filter,
File file)
Returns the
CyWriter Task that will attempt to write the specified session to the
specified file of the specified file type. |
CyWriter |
getWriter(CySession session,
CyFileFilter filter,
OutputStream os)
Returns the
CyWriter Task that will attempt to write the specified session to the
specified output stream of the specified file type. |
getAvailableWriterFilters, getMatchingFactory
CyWriter getWriter(CySession session, CyFileFilter filter, File file) throws Exception
CyWriter
Task that will attempt to write the specified session to the
specified file of the specified file type.session
- The CySession
to be written.filter
- The CyFileFilter
that defines the type of file to be written.file
- The file to be written.CyWriter
Task that will attempt to write the specified session to the
specified file of the specified file type.Exception
CyWriter getWriter(CySession session, CyFileFilter filter, OutputStream os) throws Exception
CyWriter
Task that will attempt to write the specified session to the
specified output stream of the specified file type.session
- The CySession
to be written.filter
- The CyFileFilter
that defines the type of file to be written.os
- The output stream to be written.CyWriter
Task that will attempt to write the specified session to the
specified output stream of the specified file type.Exception
Copyright 2011-2015 Cytoscape Consortium. All rights reserved.