Uses of Interface
org.cytoscape.view.presentation.RenderingEngine
-
Packages that use RenderingEngine 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. -
-
Uses of RenderingEngine in org.cytoscape.application
Methods in org.cytoscape.application that return RenderingEngine Modifier and Type Method Description RenderingEngine<CyNetwork>
CyApplicationManager. getCurrentRenderingEngine()
Returns the rendering engine associated with the current network view.Methods in org.cytoscape.application with parameters of type RenderingEngine Modifier and Type Method Description void
CyApplicationManager. setCurrentRenderingEngine(RenderingEngine<CyNetwork> engine)
Sets the current rendering engine. -
Uses of RenderingEngine in org.cytoscape.application.events
Methods in org.cytoscape.application.events that return RenderingEngine Modifier and Type Method Description RenderingEngine<CyNetwork>
SetCurrentRenderingEngineEvent. getRenderingEngine()
Return the rendering engine (presentation) that has been set as current.Constructors in org.cytoscape.application.events with parameters of type RenderingEngine Constructor Description SetCurrentRenderingEngineEvent(CyApplicationManager source, RenderingEngine<CyNetwork> engine)
Constructor. -
Uses of RenderingEngine in org.cytoscape.io.write
Methods in org.cytoscape.io.write with parameters of type RenderingEngine Modifier and Type Method Description CyWriter
PresentationWriterFactory. createWriter(OutputStream os, RenderingEngine<?> re)
Creates a single Task that will write the contents of the specifiedRenderingEngine
object to the specified OutputStream.CyWriter
PresentationWriterManager. getWriter(View<?> view, RenderingEngine<?> re, CyFileFilter filter, File file)
Returns theCyWriter
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 theCyWriter
Task that will attempt to write the specified view to the specified output stream of the specified file type. -
Uses of RenderingEngine in org.cytoscape.view.presentation
Methods in org.cytoscape.view.presentation that return RenderingEngine Modifier and Type Method Description RenderingEngine<T>
RenderingEngineFactory. createRenderingEngine(Object visualizationContainer, View<T> viewModel)
A view model can have multiple presentations.Methods in org.cytoscape.view.presentation that return types with arguments of type RenderingEngine Modifier and Type Method Description Collection<RenderingEngine<?>>
RenderingEngineManager. getAllRenderingEngines()
Get allRenderingEngine
s registered in this manager.Collection<RenderingEngine<?>>
RenderingEngineManager. getRenderingEngines(View<?> viewModel)
Get rendering engines for the given view model.Methods in org.cytoscape.view.presentation with parameters of type RenderingEngine Modifier and Type Method Description void
RenderingEngineManager. addRenderingEngine(RenderingEngine<?> engine)
Add newRenderingEngine
to this manager.void
RenderingEngineManager. removeRenderingEngine(RenderingEngine<?> engine)
Remove a rendering engine. -
Uses of RenderingEngine in org.cytoscape.view.presentation.events
Methods in org.cytoscape.view.presentation.events that return RenderingEngine Modifier and Type Method Description RenderingEngine<?>
RenderingEngineAboutToBeRemovedEvent. getRenderingEngine()
Returns theRenderingEngine
associated with the deleted presentation.RenderingEngine<?>
RenderingEngineAddedEvent. getRenderingEngine()
Get new rendering engine.Constructors in org.cytoscape.view.presentation.events with parameters of type RenderingEngine Constructor Description RenderingEngineAboutToBeRemovedEvent(RenderingEngineManager source, RenderingEngine<?> engine)
Construct an event for destroyed RenderingEngine.RenderingEngineAddedEvent(RenderingEngineManager source, RenderingEngine<?> engine)
Create an event for newly created presentation. -
Uses of RenderingEngine in org.cytoscape.view.vizmap.gui
Methods in org.cytoscape.view.vizmap.gui that return RenderingEngine Modifier and Type Method Description RenderingEngine<CyNetwork>
DefaultViewPanel. getRenderingEngine()
Deprecated.
-