1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.commons.betwixt.schema;
18
19 import java.util.ArrayList;
20 import java.util.List;
21
22 /***
23 * @author <a href="mailto:martin@mvdb.net">Martin van den Bemt</a>
24 * @version $Id: Dbid.java,v 1.4 2004/02/28 13:38:36 yoavs Exp $
25 */
26 public class Dbid
27 {
28 private ArrayList dbDataTypeCollection;
29
30 public Dbid()
31 {
32 dbDataTypeCollection = new ArrayList();
33 }
34
35 public void addDbDataType(DbDataType dbDataType) {
36 dbDataTypeCollection.add(dbDataType);
37 }
38
39 public List getDbDataTypes() {
40 return dbDataTypeCollection;
41 }
42
43 public boolean equals(Object object) {
44 if (object == null) {
45 return false;
46 }
47
48 if (object instanceof Dbid) {
49 Dbid dbid = (Dbid) object;
50 if (dbid.getDbDataTypes().equals(this.getDbDataTypes())) {
51 return true;
52 }
53 }
54 return false;
55 }
56 }
57