X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FPDBEntry.java;h=20fd3f092bceebdbfa172d0785761280a88af943;hb=dd74fc4938723fe5ec48d4e5fdcfbe58ac42a48d;hp=356a75f50078740056f92ea801087191fb8826d3;hpb=daeacba9a61069114333b550a987242d8e47e7f7;p=jalview.git diff --git a/src/jalview/datamodel/PDBEntry.java b/src/jalview/datamodel/PDBEntry.java index 356a75f..20fd3f0 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) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Copyright (C) 2006 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 @@ -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; }