1   /*
2    * Copyright 2001-2004 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
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