com.ibm.ftt.properties
Interface IPropertyGroupContainerListener


public interface IPropertyGroupContainerListener

This interface has methods that represent events corresponding to property group containers; you can register a property group container listener on a property group manager.


Field Summary
static String COPY_RIGHT
           
 
Method Summary
 void addContainer(IPropertyGroupContainer container)
          This method is called when a container is created by a property group manager.
 void addPropertyGroup(IPropertyGroup propertyGroup)
          This method is called when a property group is added to a container.
 void deleteContainer(IPropertyGroupContainer container)
          This method is called when a property group container is deleted by a property group manager.
 void deletePropertyGroup(IPropertyGroup propertyGroup)
          This method is called when a property group is deleted from a container.
 void descriptionChanged(IPropertyGroup propertyGroup, String oldDescription)
          This method is called when the description of a property group changes.
 void renameContainer(IPropertyGroupContainer container, String oldName)
          This method is called when the system that a property group container is associated with is renamed.
 void renamePropertyGroup(IPropertyGroup propertyGroup, String oldName)
          This method is called when a property group is renamed.
 

Field Detail

COPY_RIGHT

static final String COPY_RIGHT
See Also:
Constant Field Values
Method Detail

addContainer

void addContainer(IPropertyGroupContainer container)
This method is called when a container is created by a property group manager.

Parameters:
container - The new property group container

deleteContainer

void deleteContainer(IPropertyGroupContainer container)
This method is called when a property group container is deleted by a property group manager.

Parameters:
container - The property group container that is deleted

renameContainer

void renameContainer(IPropertyGroupContainer container,
                     String oldName)
This method is called when the system that a property group container is associated with is renamed.

Parameters:
container - The property group container associated with the renamed system
oldName - The old name of the system

addPropertyGroup

void addPropertyGroup(IPropertyGroup propertyGroup)
This method is called when a property group is added to a container.

Parameters:
propertyGroup - The new property group.

deletePropertyGroup

void deletePropertyGroup(IPropertyGroup propertyGroup)
This method is called when a property group is deleted from a container.

Parameters:
propertyGroup - The deleted property group

renamePropertyGroup

void renamePropertyGroup(IPropertyGroup propertyGroup,
                         String oldName)
This method is called when a property group is renamed.

Parameters:
propertyGroup - The renamed property group
oldName - The previous name of the property group.

descriptionChanged

void descriptionChanged(IPropertyGroup propertyGroup,
                        String oldDescription)
This method is called when the description of a property group changes.

Parameters:
propertyGroup - The property group with a changed description
oldDescription - The old description of the property group