Package org.cytoscape.model.events
Class ColumnDeletedEvent
- java.lang.Object
-
- org.cytoscape.event.AbstractCyEvent<CyTable>
-
- org.cytoscape.model.events.ColumnDeletedEvent
-
public final class ColumnDeletedEvent extends AbstractCyEvent<CyTable>
This event signals that a column has been deleted.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>
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.
-
-
Constructor Summary
Constructors Constructor Description ColumnDeletedEvent(CyTable source, String columnName)
Constructs event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getColumnName()
Returns the fully-qualified name of the column for this event.String
getNameOnly()
Returns the name portion without the namespace.String
getNamespace()
Returns the namespace of the column, or null if the column does not have a namespace.-
Methods inherited from class org.cytoscape.event.AbstractCyEvent
getListenerClass, getSource
-
-
-
-
Method Detail
-
getColumnName
public String getColumnName()
Returns the fully-qualified name of the column for this event.- Returns:
- The name of the column for this event.
-
getNamespace
public String 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
public String getNameOnly()
Returns the name portion without the namespace.
-
-