equivalence for transferring/updating references
[jalview.git] / src / jalview / datamodel / PDBEntry.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer
3  * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
18  */
19 package jalview.datamodel;
20
21 import java.util.*;
22
23 public class PDBEntry
24 {
25   String file;
26   String type;
27   String id;
28   Hashtable properties;
29
30   /* (non-Javadoc)
31    * @see java.lang.Object#equals(java.lang.Object)
32    */
33   public boolean equals(Object obj)
34   {
35     if (obj==null || !(obj instanceof PDBEntry))
36     {
37         return false;
38     }
39     if (obj==this)
40       return true;
41     PDBEntry o = (PDBEntry) obj;
42     return (file==o.file || (file!=null && o.file!=null && o.file.equals(file)))
43     && (type==o.type || (type!=null && o.type!=null && o.type.equals(type)))
44     && (id==o.id || (id!=null && o.id!=null && o.id.equalsIgnoreCase(id)))
45     && (properties==o.properties || (properties!=null && o.properties!=null && properties.equals(o.properties)));
46   }
47   public PDBEntry()
48   {}
49   public PDBEntry(PDBEntry entry) {
50     file = entry.file;
51     type = entry.type;
52     id = entry.id;
53     if (entry.properties!=null)
54     {
55       properties = (Hashtable) entry.properties.clone();
56     }
57   }
58   public void setFile(String file)
59   {
60     this.file = file;
61   }
62
63   public String getFile()
64   {
65     return file;
66   }
67
68   public void setType(String type)
69   {
70     this.type = type;
71   }
72
73   public String getType()
74   {
75     return type;
76   }
77
78   public void setId(String id)
79   {
80     this.id = id;
81   }
82
83   public String getId()
84   {
85     return id;
86   }
87
88   public void setProperty(Hashtable property)
89   {
90     this.properties = property;
91   }
92
93   public Hashtable getProperty()
94   {
95     return properties;
96   }
97
98 }