Searched refs:attrib (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/util/jar/
H A DAttributes.java192 * the parameter {@code attrib}.
194 * @param attrib
198 public Attributes(Attributes attrib) { argument
199 map = (Map<Object, Object>) ((HashMap) attrib.map).clone();
305 * @param attrib
309 public void putAll(Map<?, ?> attrib) { argument
310 if (attrib == null || !(attrib instanceof Attributes)) {
311 throw new ClassCastException(attrib.getClass().getName() + " not an Attributes");
313 this.map.putAll(attrib);
[all...]
H A DJarEntry.java111 void setAttributes(Attributes attrib) { argument
112 attributes = attrib;

Completed in 6024 milliseconds