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