JAL-1503 update version in GPL header
[jalview.git] / src / jalview / datamodel / PDBEntry.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.1)
3  * Copyright (C) 2014 The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
10  *  
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  * The Jalview Authors are detailed in the 'AUTHORS' file.
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 }