Uses of Class
org.springframework.ui.ModelMap
Packages that use ModelMap
Package
Description
Generic support for UI layer concepts.
Support classes for handling validation results.
- 
Uses of ModelMap in org.springframework.uiSubclasses of ModelMap in org.springframework.uiModifier and TypeClassDescriptionclassMethods in org.springframework.ui that return ModelMapModifier and TypeMethodDescriptionModelMap.addAllAttributes(Collection<?> attributeValues) Copy all attributes in the suppliedCollectioninto thisMap, using attribute name generation for each element.ModelMap.addAllAttributes(Map<String, ?> attributes) Copy all attributes in the suppliedMapinto thisMap.ModelMap.addAttribute(Object attributeValue) Add the supplied attribute to thisMapusing agenerated name.ModelMap.addAttribute(String attributeName, Object attributeValue) Add the supplied attribute under the supplied name.ModelMap.mergeAttributes(Map<String, ?> attributes) Copy all attributes in the suppliedMapinto thisMap, with existing objects of the same name taking precedence (i.e.
- 
Uses of ModelMap in org.springframework.validation.supportSubclasses of ModelMap in org.springframework.validation.supportModifier and TypeClassDescriptionclassSubclass ofExtendedModelMapthat automatically removes aBindingResultobject if the corresponding target attribute gets replaced through regularMapoperations.