Package org.cytoscape.view.vizmap.events
Class VisualStyleAddedEvent
java.lang.Object
org.cytoscape.event.AbstractCyEvent<VisualMappingManager>
org.cytoscape.view.vizmap.events.VisualStyleAddedEvent
- All Implemented Interfaces:
CyEvent<VisualMappingManager>
When new VisualStyle is added to the
VisualMappingManager
,
it fires this event.Cytoscape Backwards Compatibility (Final Class): This class is final and therefore can't be extended by users. This means that we may add methods for minor version updates. Methods will only be removed for major version updates.
Module: vizmap-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>vizmap-api</artifactId> </dependency>
-
Constructor Summary
ConstructorDescriptionVisualStyleAddedEvent(VisualMappingManager source, VisualStyle created)
Creates an event for the newly created style. -
Method Summary
Modifier and TypeMethodDescriptionGet the newly created VisualStyle.Methods inherited from class org.cytoscape.event.AbstractCyEvent
getListenerClass, getSource
-
Constructor Details
-
VisualStyleAddedEvent
Creates an event for the newly created style.- Parameters:
source
- Source of this event. This is alwaysVisualMappingManager
.created
- New VisualStyle
-
-
Method Details
-
getVisualStyleAdded
Get the newly created VisualStyle.- Returns:
- new VisualStyle
-