X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2Fxdb%2Fembl%2FEmblFeature.java;fp=src%2Fjalview%2Fdatamodel%2Fxdb%2Fembl%2FEmblFeature.java;h=51d740bb2d7ecc575957f31a72d6afb147e2f93b;hb=8c7fd90d480e2671e0fa251ada3c89fa1d18862a;hp=7e503c928aea62859b62f138f5d037e5a14fda85;hpb=ea7b9666447dea727e9d607de3694cfe27bc811e;p=jalview.git diff --git a/src/jalview/datamodel/xdb/embl/EmblFeature.java b/src/jalview/datamodel/xdb/embl/EmblFeature.java index 7e503c9..51d740b 100644 --- a/src/jalview/datamodel/xdb/embl/EmblFeature.java +++ b/src/jalview/datamodel/xdb/embl/EmblFeature.java @@ -37,7 +37,7 @@ public class EmblFeature Vector qualifiers; - Vector locations; + String location; /** * @return the dbRefs @@ -57,20 +57,19 @@ public class EmblFeature } /** - * @return the locations + * @return the location */ - public Vector getLocations() + public String getLocation() { - return locations; + return location; } /** - * @param locations - * the locations to set + * @param loc */ - public void setLocations(Vector locations) + public void setLocation(String loc) { - this.locations = locations; + this.location = loc; } /**