Uses of Class
org.cytoscape.session.CySession
-
Packages that use CySession Package Description org.cytoscape.io.read Handle importing Cytoscape data (network, attributes, session, properties, etc) from files/URLs.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.org.cytoscape.jobs This package provides a mechanism for executing remote jobs from within Cytoscape.org.cytoscape.session This package contains the interfaces and classes necessary to capturing, storing, and retrieving the state of a Cytoscape session.org.cytoscape.session.events This package contains the interfaces and classes necessary to capturing, session change events. -
-
Uses of CySession in org.cytoscape.io.read
Methods in org.cytoscape.io.read that return CySession Modifier and Type Method Description CySession
CySessionReader. getSession()
Returns aCySession
object -
Uses of CySession in org.cytoscape.io.write
Methods in org.cytoscape.io.write with parameters of type CySession Modifier and Type Method Description CyWriter
CySessionWriterFactory. createWriter(OutputStream os, CySession session)
Creates a single Task that will write the specifiedCySession
object to the specified OutputStream.CyWriter
CySessionWriterManager. getWriter(CySession session, CyFileFilter filter, File file)
Returns theCyWriter
Task that will attempt to write the specified session to the specified file of the specified file type.CyWriter
CySessionWriterManager. getWriter(CySession session, CyFileFilter filter, OutputStream os)
Returns theCyWriter
Task that will attempt to write the specified session to the specified output stream of the specified file type. -
Uses of CySession in org.cytoscape.jobs
Methods in org.cytoscape.jobs with parameters of type CySession Modifier and Type Method Description CyJob
CyJobExecutionService. restoreJobFromSession(CySession session, File sessionFile)
This is method is called by theCyJobManager
to restore the job and reestablish the job with the remote service. -
Uses of CySession in org.cytoscape.session
Methods in org.cytoscape.session that return CySession Modifier and Type Method Description CySession
CySession.Builder. build()
Returns a complete instance of CySession based upon the methods called on this instance of Builder.CySession
CySessionManager. getCurrentSession()
This method returns aCySession
object describing the current state of Cytoscape.Methods in org.cytoscape.session with parameters of type CySession Modifier and Type Method Description void
CySessionManager. setCurrentSession(CySession session, String fileName)
This method allows a new session to be set and in doing so erases and overrides the current session! -
Uses of CySession in org.cytoscape.session.events
Methods in org.cytoscape.session.events that return CySession Modifier and Type Method Description CySession
SessionLoadedEvent. getLoadedSession()
Returns the session that was just loaded.CySession
SessionSavedEvent. getSavedSession()
Returns the session that was just loaded.Constructors in org.cytoscape.session.events with parameters of type CySession Constructor Description SessionLoadedEvent(CySessionManager source, CySession session, String fileName)
SessionSavedEvent(Object source, CySession session, String fileName)
-