All Packages Class Hierarchy This Package Previous Next Index
Interface com.sgi.sysadm.util.AttrListener
- public interface AttrListener
- extends EventListener
Interface for getting notified when an Attribute within an
AttrBundle is added, changed, or removed.
- See Also:
- AttrBundle, Attribute
-
attrAdded(AttrEvent)
- Called when an Attribute is added to a AttrBundle.
-
attrChanged(AttrEvent)
- Called when an Attribute within an AttrBundle changes.
-
attrRemoved(AttrEvent)
- Called when an Attribute is removed from a AttrBundle.
attrAdded
public abstract void attrAdded(AttrEvent event)
- Called when an Attribute is added to a AttrBundle.
- Parameters:
- event - specifies the Attribute that was added.
attrChanged
public abstract void attrChanged(AttrEvent event)
- Called when an Attribute within an AttrBundle changes.
- Parameters:
- event - specifies the Attribute that changed.
attrRemoved
public abstract void attrRemoved(AttrEvent event)
- Called when an Attribute is removed from a AttrBundle.
- Parameters:
- event - specifies the Attribute that was deleted.
All Packages Class Hierarchy This Package Previous Next Index