Package | Description |
---|---|
org.cytoscape.application |
This package provides Cytoscape version number, application-wide setting,
basic access to current network, selected networks, views and rendering engines.
|
org.cytoscape.application.events |
This package provides application events/listeners, including
Cytoscape startup/shutdown, setCurrentNetwork/setCurrentNetworkView/
setSelectedNetwork.
|
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.view.presentation |
API set for rendering engines (visualizers).
|
org.cytoscape.view.presentation.events |
Event implementations and listener interfaces for the Presentation layer.
|
org.cytoscape.view.vizmap.gui |
This package provides access to GUI component of VizMap GUI, and interfaces of mapping related managers.
|
Modifier and Type | Method and Description |
---|---|
RenderingEngine<CyNetwork> |
CyApplicationManager.getCurrentRenderingEngine()
Returns the rendering engine associated with the current network view.
|
Modifier and Type | Method and Description |
---|---|
void |
CyApplicationManager.setCurrentRenderingEngine(RenderingEngine<CyNetwork> engine)
Sets the current rendering engine.
|
Modifier and Type | Method and Description |
---|---|
RenderingEngine<CyNetwork> |
SetCurrentRenderingEngineEvent.getRenderingEngine()
Return the rendering engine (presentation) that has been set as current.
|
Constructor and Description |
---|
SetCurrentRenderingEngineEvent(CyApplicationManager source,
RenderingEngine<CyNetwork> engine)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
CyWriter |
PresentationWriterFactory.createWriter(OutputStream os,
RenderingEngine<?> re)
Creates a single Task that will write the contents of the
specified
RenderingEngine object to the specified OutputStream. |
CyWriter |
PresentationWriterManager.getWriter(View<?> view,
RenderingEngine<?> re,
CyFileFilter filter,
File file)
Returns the
CyWriter Task that will attempt to write the specified view to the
specified file of the specified file type. |
CyWriter |
PresentationWriterManager.getWriter(View<?> view,
RenderingEngine<?> re,
CyFileFilter filter,
OutputStream os)
Returns the
CyWriter Task that will attempt to write the specified view to the
specified output stream of the specified file type. |
Modifier and Type | Method and Description |
---|---|
RenderingEngine<T> |
RenderingEngineFactory.createRenderingEngine(Object visualizationContainer,
View<T> viewModel)
A view model can have multiple presentations.
|
Modifier and Type | Method and Description |
---|---|
Collection<RenderingEngine<?>> |
RenderingEngineManager.getAllRenderingEngines()
Get all
RenderingEngine s registered in this manager. |
Collection<RenderingEngine<?>> |
RenderingEngineManager.getRenderingEngines(View<?> viewModel)
Get rendering engines for the given view model.
|
Modifier and Type | Method and Description |
---|---|
void |
RenderingEngineManager.addRenderingEngine(RenderingEngine<?> engine)
Add new
RenderingEngine to this manager. |
void |
RenderingEngineManager.removeRenderingEngine(RenderingEngine<?> engine)
Remove a rendering engine.
|
Modifier and Type | Method and Description |
---|---|
RenderingEngine<?> |
RenderingEngineAddedEvent.getRenderingEngine()
Get new rendering engine.
|
RenderingEngine<?> |
RenderingEngineAboutToBeRemovedEvent.getRenderingEngine()
Returns the
RenderingEngine associated with the deleted presentation. |
Constructor and Description |
---|
RenderingEngineAboutToBeRemovedEvent(RenderingEngineManager source,
RenderingEngine<?> engine)
Construct an event for destroyed RenderingEngine.
|
RenderingEngineAddedEvent(RenderingEngineManager source,
RenderingEngine<?> engine)
Create an event for newly created presentation.
|
Modifier and Type | Method and Description |
---|---|
RenderingEngine<CyNetwork> |
DefaultViewPanel.getRenderingEngine()
Deprecated.
|
Copyright 2011-2015 Cytoscape Consortium. All rights reserved.