org.springframework.webflow.core.collection
Class AttributeMapBindingEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.springframework.webflow.core.collection.AttributeMapBindingEvent
All Implemented Interfaces:
Serializable

public class AttributeMapBindingEvent
extends EventObject

Holder for information about the binding or unbinding event in an AttributeMap.

Author:
Ben Hale
See Also:
AttributeMapBindingListener, Serialized Form

Constructor Summary
AttributeMapBindingEvent(AttributeMap source, String attributeName, Object attributeValue)
          Creates an event for map binding that contains information about the event.
 
Method Summary
 String getAttributeName()
          Returns the name the attribute was bound with.
 Object getAttributeValue()
          Returns the value of the attribute.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AttributeMapBindingEvent

public AttributeMapBindingEvent(AttributeMap source,
                                String attributeName,
                                Object attributeValue)
Creates an event for map binding that contains information about the event.

Parameters:
source - the source map that this attribute was bound in
attributeName - the name that this attribute was bound with
attributeValue - the attribute
Method Detail

getAttributeName

public String getAttributeName()
Returns the name the attribute was bound with.


getAttributeValue

public Object getAttributeValue()
Returns the value of the attribute.