From: amwaterhouse Date: Tue, 25 Jul 2006 09:34:11 +0000 (+0000) Subject: Can have local file X-Git-Tag: Release_2_1~229 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=c9c60ab441d23ab149afe22a739d8376c58b8cec;p=jalview.git Can have local file --- diff --git a/src/jalview/datamodel/PDBEntry.java b/src/jalview/datamodel/PDBEntry.java index 356a75f..398eae3 100755 --- a/src/jalview/datamodel/PDBEntry.java +++ b/src/jalview/datamodel/PDBEntry.java @@ -21,6 +21,7 @@ package jalview.datamodel; import java.util.*; public class PDBEntry { + String file; String type; String id; Hashtable properties; @@ -28,6 +29,12 @@ public class PDBEntry public PDBEntry() { } + public void setFile(String file) + { this.file = file; } + + public String getFile() + { return file; } + public void setType(String type) { this.type = type; }