MCPcopy Create free account
hub / github.com/ReadyTalk/avian / add

Method add

classpath/java/util/AbstractCollection.java:18–21  ·  view source on GitHub ↗
(T element)

Source from the content-addressed store, hash-verified

16 */
17public abstract class AbstractCollection<T> implements Collection<T> {
18 public boolean add(T element) {
19 throw new UnsupportedOperationException("adding to "
20 + this.getClass().getName());
21 }
22
23 public boolean addAll(Collection<? extends T> collection) {
24 boolean result = false;

Callers 1

addAllMethod · 0.95

Calls 2

getNameMethod · 0.65
getClassMethod · 0.45

Tested by

no test coverage detected