68697071727374
* @param o * element whose presence in this collection is to be tested. * @return <tt>true</tt> if this collection contains the specified element */ public boolean contains(Object o) { return refrencedCollection.contains(new WeakObject(o)); }
9293949596979899
} return a; } public boolean add(Object o) { WeakObject weakObject = new WeakObject(o); return refrencedCollection.add(weakObject); }
979899100101102103104
WeakObject weakObject = new WeakObject(o); return refrencedCollection.add(weakObject); } public boolean remove(Object o) { WeakObject weakObject = new WeakObject(o); return refrencedCollection.remove(weakObject); }