X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FPDBEntry.java;h=16f88642f3b71e6d37e109e4a3fbc7b26c2736b0;hb=7157dfd20efd2e1db47db1ac12e879eb51c67b92;hp=20fd3f092bceebdbfa172d0785761280a88af943;hpb=174230b4233d9ce80f94527768d2cd2f76da11ab;p=jalview.git diff --git a/src/jalview/datamodel/PDBEntry.java b/src/jalview/datamodel/PDBEntry.java index 20fd3f0..16f8864 100755 --- a/src/jalview/datamodel/PDBEntry.java +++ b/src/jalview/datamodel/PDBEntry.java @@ -1,6 +1,6 @@ /* * Jalview - A Sequence Alignment Editor and Viewer - * Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -19,6 +19,7 @@ package jalview.datamodel; import java.util.*; + public class PDBEntry { String file; @@ -27,25 +28,37 @@ public class PDBEntry Hashtable properties; public PDBEntry() - { } + {} public void setFile(String file) - { this.file = file; } + { + this.file = file; + } public String getFile() - { return file; } + { + return file; + } public void setType(String type) - { this.type = type; } + { + this.type = type; + } public String getType() - { return type; } + { + return type; + } public void setId(String id) - { this.id = id; } + { + this.id = id; + } public String getId() - { return id; } + { + return id; + } public void setProperty(Hashtable property) { @@ -57,5 +70,4 @@ public class PDBEntry return properties; } - }