Package org.cytoscape.model.events
Class ColumnCreatedEvent
This event signals that a column has been created.
This should probably return the type parameter as well.
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: model-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>model-api</artifactId> </dependency>
-
Constructor Summary
ConstructorDescriptionColumnCreatedEvent
(CyTable source, String columnName) Deprecated.ColumnCreatedEvent
(CyTable source, String columnName, Long suid) -
Method Summary
Modifier and TypeMethodDescriptionReturns the fully-qualified name of the column for this event.Returns the name portion without the namespace.Returns the namespace of the column, or null if the column does not have a namespace.getSUID()
Methods inherited from class org.cytoscape.event.AbstractCyEvent
getListenerClass, getSource
-
Constructor Details
-
ColumnCreatedEvent
Deprecated.Constructs event.- Parameters:
source
- The table in which the column was created.columnName
- The name of the column created.
-
ColumnCreatedEvent
-
-
Method Details
-
getColumnName
Returns the fully-qualified name of the column for this event.- Returns:
- The name of the column for this event.
-
getNamespace
Returns the namespace of the column, or null if the column does not have a namespace. Default columns created by Cytoscape do not have a namespace. -
getNameOnly
Returns the name portion without the namespace. -
getSUID
-