1 16 package org.springframework.webflow.core.collection; 17 18 import java.util.EventObject ; 19 20 28 public class AttributeMapBindingEvent extends EventObject { 29 30 private String attributeName; 31 32 private Object attributeValue; 33 34 41 public AttributeMapBindingEvent(AttributeMap source, String attributeName, Object attributeValue) { 42 super(source); 43 this.source = source; 44 this.attributeName = attributeName; 45 this.attributeValue = attributeValue; 46 } 47 48 51 public String getAttributeName() { 52 return attributeName; 53 } 54 55 58 public Object getAttributeValue() { 59 return attributeValue; 60 } 61 } | Popular Tags |