apply gpl development license
[jalview.git] / src / jalview / datamodel / PDBEntry.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Development Version 2.4.1)
3  * Copyright (C) 2009 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
27   String type;
28
29   String id;
30
31   Hashtable properties;
32
33   /*
34    * (non-Javadoc)
35    * 
36    * @see java.lang.Object#equals(java.lang.Object)
37    */
38   public boolean equals(Object obj)
39   {
40     if (obj == null || !(obj instanceof PDBEntry))
41     {
42       return false;
43     }
44     if (obj == this)
45       return true;
46     PDBEntry o = (PDBEntry) obj;
47     return (file == o.file || (file != null && o.file != null && o.file
48             .equals(file)))
49             && (type == o.type || (type != null && o.type != null && o.type
50                     .equals(type)))
51             && (id == o.id || (id != null && o.id != null && o.id
52                     .equalsIgnoreCase(id)))
53             && (properties == o.properties || (properties != null
54                     && o.properties != null && properties
55                     .equals(o.properties)));
56   }
57
58   public PDBEntry()
59   {
60   }
61
62   public PDBEntry(PDBEntry entry)
63   {
64     file = entry.file;
65     type = entry.type;
66     id = entry.id;
67     if (entry.properties != null)
68     {
69       properties = (Hashtable) entry.properties.clone();
70     }
71   }
72
73   public void setFile(String file)
74   {
75     this.file = file;
76   }
77
78   public String getFile()
79   {
80     return file;
81   }
82
83   public void setType(String type)
84   {
85     this.type = type;
86   }
87
88   public String getType()
89   {
90     return type;
91   }
92
93   public void setId(String id)
94   {
95     this.id = id;
96   }
97
98   public String getId()
99   {
100     return id;
101   }
102
103   public void setProperty(Hashtable property)
104   {
105     this.properties = property;
106   }
107
108   public Hashtable getProperty()
109   {
110     return properties;
111   }
112
113 }