flesh out some classpath classes

This commit is contained in:
Joel Dice
2007-07-22 13:06:21 -06:00
parent ecd31a10a4
commit 472ecb1713
18 changed files with 320 additions and 92 deletions

View File

@ -32,6 +32,10 @@ public class Collections {
synchronized (lock) { return collection.size(); }
}
public synchronized boolean contains(T e) {
synchronized (lock) { return collection.contains(e); }
}
public synchronized boolean add(T e) {
synchronized (lock) { return collection.add(e); }
}