1 16 17 package org.apache.commons.betwixt.schema; 18 19 import java.util.ArrayList ; 20 import java.util.List ; 21 22 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 58 | Popular Tags |