com.ibm.as400.resource
Interface ResourceListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
ResourceAdapter

public interface ResourceListener
extends java.util.EventListener

The ResourceListener represents a listener for ResourceEvents.


Method Summary
 void attributeChangesCanceled(ResourceEvent event)
          Invoked when attribute changes are canceled.
 void attributeChangesCommitted(ResourceEvent event)
          Invoked when attribute changes are committed.
 void attributeValueChanged(ResourceEvent event)
          Invoked when an attribute value is changed.
 void attributeValuesRefreshed(ResourceEvent event)
          Invoked when attributes values are refreshed.
 void resourceCreated(ResourceEvent event)
          Invoked when an resource is created.
 void resourceDeleted(ResourceEvent event)
          Invoked when an resource is deleted.
 

Method Detail

attributeChangesCanceled

public void attributeChangesCanceled(ResourceEvent event)
Invoked when attribute changes are canceled.
Parameters:
event - The event.

attributeChangesCommitted

public void attributeChangesCommitted(ResourceEvent event)
Invoked when attribute changes are committed.
Parameters:
event - The event.

attributeValuesRefreshed

public void attributeValuesRefreshed(ResourceEvent event)
Invoked when attributes values are refreshed.
Parameters:
event - The event.

attributeValueChanged

public void attributeValueChanged(ResourceEvent event)
Invoked when an attribute value is changed.
Parameters:
event - The event.

resourceCreated

public void resourceCreated(ResourceEvent event)
Invoked when an resource is created.
Parameters:
event - The event.

resourceDeleted

public void resourceDeleted(ResourceEvent event)
Invoked when an resource is deleted.
Parameters:
event - The event.