1 16 package org.springframework.webflow.core.collection; 17 18 27 public interface MutableAttributeMap extends AttributeMap { 28 29 42 public Object put(String attributeName, Object attributeValue); 43 44 49 public MutableAttributeMap putAll(AttributeMap attributes); 50 51 57 public Object remove(String attributeName); 58 59 63 public MutableAttributeMap clear(); 64 65 71 public MutableAttributeMap replaceWith(AttributeMap attributes) throws UnsupportedOperationException ; 72 73 } | Popular Tags |