Home | History | Annotate | Download | only in jar

Lines Matching refs:putAll

138      * @tests java.util.jar.Attributes#putAll(java.util.Map)
146 a.putAll(b);
154 atts2.putAll(atts);
158 atts.putAll(Collections.EMPTY_MAP);
166 * @tests java.util.jar.Attributes#putAll(java.util.Map)
171 new Attributes().putAll((Map) null);
175 // verify that special care for null is done in the Attributes.putAll()
180 public void putAll(Map<?, ?> attrib) {
181 map.putAll(attrib);
183 }.putAll((Map<?, ?>) null);