1 package com.thoughtworks.acceptance.objects;
2
3 import java.util.ArrayList;
4 import java.util.Collection;
5 import java.util.List;
6
7 public class SampleLists {
8 public List good = new ArrayList();
9 public Collection bad = new ArrayList();
10
11 public boolean equals(Object obj) {
12 if (obj instanceof SampleLists) {
13 SampleLists sampleLists = (SampleLists) obj;
14 return good.equals(sampleLists.good)
15 && bad.equals(sampleLists.bad);
16 }
17 return false;
18 }
19 }
This page was automatically generated by Maven