X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FUniprotEntry.java;h=b963022aa3dd2cd60010316d53f030b644be659e;hb=385e63c78d289d4beae9c1ad2b187c0ea311ffbc;hp=d2f4dcfee2d129d2503a3a3fb72f7809e7fd09d2;hpb=daeacba9a61069114333b550a987242d8e47e7f7;p=jalview.git diff --git a/src/jalview/datamodel/UniprotEntry.java b/src/jalview/datamodel/UniprotEntry.java index d2f4dcf..b963022 100755 --- a/src/jalview/datamodel/UniprotEntry.java +++ b/src/jalview/datamodel/UniprotEntry.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) 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 @@ -28,7 +28,7 @@ public class UniprotEntry Vector accession; Vector feature; Vector dbrefs; - Vector proteinName; + UniprotProteinName protName; public void setAccession(Vector items) { @@ -37,33 +37,34 @@ public class UniprotEntry public void setFeature(Vector items) { - feature = items; - } - - public Vector getFeature() { - return feature; - } + feature = items; + } + public Vector getFeature() + { + return feature; + } - public Vector getAccession() - { - return accession; - } + public Vector getAccession() + { + return accession; + } - public void setProteinName(Vector items) - { - proteinName = items; - } + public void setProtein(UniprotProteinName names) + { + protName = names; + } - public Vector getProteinName() - { - return proteinName; - } + public UniprotProteinName getProtein() + { + return protName; + } public void setName(Vector na) { name = na; } + public Vector getName() { return name; @@ -86,7 +87,7 @@ public class UniprotEntry public void setDbReference(Vector dbref) { - this.dbrefs = dbref; + this.dbrefs = dbref; } }