01: package junitx.ddtunit.resources;
02:
03: import java.util.Collection;
04: import java.util.Iterator;
05:
06: public class CollectionImpl implements Collection {
07:
08: public CollectionImpl() {
09: // no special initialization
10: }
11:
12: public boolean add(Object arg0) {
13: // TODO Auto-generated method stub
14: return false;
15: }
16:
17: public boolean addAll(Collection arg0) {
18: // TODO Auto-generated method stub
19: return false;
20: }
21:
22: public void clear() {
23: // TODO Auto-generated method stub
24:
25: }
26:
27: public boolean contains(Object arg0) {
28: // TODO Auto-generated method stub
29: return false;
30: }
31:
32: public boolean containsAll(Collection arg0) {
33: // TODO Auto-generated method stub
34: return false;
35: }
36:
37: public boolean isEmpty() {
38: // TODO Auto-generated method stub
39: return false;
40: }
41:
42: public Iterator iterator() {
43: // TODO Auto-generated method stub
44: return null;
45: }
46:
47: public boolean remove(Object arg0) {
48: // TODO Auto-generated method stub
49: return false;
50: }
51:
52: public boolean removeAll(Collection arg0) {
53: // TODO Auto-generated method stub
54: return false;
55: }
56:
57: public boolean retainAll(Collection arg0) {
58: // TODO Auto-generated method stub
59: return false;
60: }
61:
62: public int size() {
63: // TODO Auto-generated method stub
64: return 0;
65: }
66:
67: public Object[] toArray() {
68: // TODO Auto-generated method stub
69: return null;
70: }
71:
72: public Object[] toArray(Object[] arg0) {
73: // TODO Auto-generated method stub
74: return null;
75: }
76:
77: }
|