org.springframework.webflow.core.collection
Class AttributeMapBindingEvent
java.lang.Object
java.util.EventObject
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
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 inattributeName
- the name that this attribute was bound withattributeValue
- the attribute
getAttributeName
public String getAttributeName()
- Returns the name the attribute was bound with.
getAttributeValue
public Object getAttributeValue()
- Returns the value of the attribute.