Package org.cytoscape.application
Interface NetworkViewRenderer
-
public interface NetworkViewRenderer
Module:
application-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>application-api</artifactId> </dependency>
Cytoscape Backwards Compatibility (SPI Interface): We expect that this interface will be implemented. Therefore to maintain backwards compatibility this interface will only be modified for major version updates.
-
-
Field Summary
Fields Modifier and Type Field Description static String
BIRDS_EYE_CONTEXT
static String
DEFAULT_CONTEXT
static String
THUMBNAIL_CONTEXT
static String
VISUAL_STYLE_PREVIEW_CONTEXT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getId()
CyNetworkViewFactory
getNetworkViewFactory()
RenderingEngineFactory<CyNetwork>
getRenderingEngineFactory(String contextId)
-
-
-
Field Detail
-
DEFAULT_CONTEXT
static final String DEFAULT_CONTEXT
- See Also:
- Constant Field Values
-
BIRDS_EYE_CONTEXT
static final String BIRDS_EYE_CONTEXT
- See Also:
- Constant Field Values
-
VISUAL_STYLE_PREVIEW_CONTEXT
static final String VISUAL_STYLE_PREVIEW_CONTEXT
- See Also:
- Constant Field Values
-
THUMBNAIL_CONTEXT
static final String THUMBNAIL_CONTEXT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getRenderingEngineFactory
RenderingEngineFactory<CyNetwork> getRenderingEngineFactory(String contextId)
-
getNetworkViewFactory
CyNetworkViewFactory getNetworkViewFactory()
-
getId
String getId()
-
-