Class ColumnVisualStyleSetEvent
java.lang.Object
org.cytoscape.event.AbstractCyEvent<TableVisualMappingManager>
org.cytoscape.view.vizmap.events.table.ColumnVisualStyleSetEvent
- All Implemented Interfaces:
CyEvent<TableVisualMappingManager>
Event fired when a
VisualStyle
is set to a column view through
TableVisualMappingManager.setVisualStyle(View, VisualStyle)
.- Since:
- 3.9
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
ConstructorDescriptionColumnVisualStyleSetEvent
(TableVisualMappingManager source, VisualStyle style, View<CyColumn> view) Creates the event. -
Method Summary
Modifier and TypeMethodDescriptionGet the The target column view model.Returns the VisualStyle that was set to the column view.Methods inherited from class org.cytoscape.event.AbstractCyEvent
getListenerClass, getSource
-
Constructor Details
-
ColumnVisualStyleSetEvent
public ColumnVisualStyleSetEvent(TableVisualMappingManager source, VisualStyle style, View<CyColumn> view) Creates the event.- Parameters:
source
- Source of this event. This is alwaysTableVisualMappingManager
.style
- The VisualStyle that was set to the column view.view
- The target CyColumn view.
-
-
Method Details
-
getVisualStyle
Returns the VisualStyle that was set to the column view. May be null if the VisualStyle was removed.- Returns:
- The VisualStyle that was set to the column view.
-
getColumnView
Get the The target column view model.
-