com.supermap.data
Class DatasetGroupRenamedEvent
- java.lang.Object
 - 
- java.util.EventObject
 - 
- com.supermap.data.DatasetGroupRenamedEvent
 
 
 
- 
- All Implemented Interfaces:
 - java.io.Serializable
 
public class DatasetGroupRenamedEvent extends java.util.EventObjectIndicates the end of the dataset grouping name modification.This event is triggered when the name of the dataset grouping is modified.
- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor and Description DatasetGroupRenamedEvent(java.lang.Object source, java.lang.String oldName, java.lang.String newName)Construct a new object of a DatasetGroupRenamedEvent based on the given parameters. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description java.lang.StringgetNewName()Returns a new name for the dataset grouping.java.lang.StringgetOldName()Returns the original name of the dataset grouping. 
 - 
 
- 
- 
Constructor Detail
- 
DatasetGroupRenamedEvent
public DatasetGroupRenamedEvent(java.lang.Object source, java.lang.String oldName, java.lang.String newName)Construct a new object of a DatasetGroupRenamedEvent based on the given parameters.- Parameters:
 source- object to initiate the event.oldName- The name of the dataset grouping that will be renamed.newName- The new name of the dataset grouping.
 
 - 
 
- 
Method Detail
- 
getOldName
public java.lang.String getOldName()
Returns the original name of the dataset grouping.- Returns:
 - The original name of the dataset grouping.
 
 
- 
getNewName
public java.lang.String getNewName()
Returns a new name for the dataset grouping.- Returns:
 - The new name of the dataset grouping.
 
 
 - 
 
 -