Lines Matching refs:map
21 import java.util.Map;
65 * Map of all attributes to their values.
67 private final Map<BodyQName, String> attrs;
88 private Map<BodyQName, String> map;
110 result.map = source.getAttributes();
141 if (map == null) {
142 map = new HashMap<BodyQName, String>();
144 map = new HashMap<BodyQName, String>(map);
148 map.remove(name);
150 map.put(name, value);
178 if (map == null) {
179 map = new HashMap<BodyQName, String>();
184 return new ComposableBody(map, payloadXML);
196 final Map<BodyQName, String> attrMap,
271 public Map<BodyQName, String> getAttributes() {
320 for (Map.Entry<BodyQName, String> entry : attrs.entrySet()) {