JAL-3186 remove Variable Colour from popup menu
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblFeature.java
index 7f53eb3..51d740b 100644 (file)
  */
 package jalview.datamodel.xdb.embl;
 
-import java.util.Vector;
-
 import jalview.datamodel.DBRefEntry;
 
+import java.util.Vector;
+
 /**
  * Data model for a <feature> element returned from an EMBL query reply
  * 
@@ -37,7 +37,7 @@ public class EmblFeature
 
   Vector<Qualifier> qualifiers;
 
-  Vector<EmblFeatureLocations> locations;
+  String location;
 
   /**
    * @return the dbRefs
@@ -57,20 +57,19 @@ public class EmblFeature
   }
 
   /**
-   * @return the locations
+   * @return the location
    */
-  public Vector<EmblFeatureLocations> getLocations()
+  public String getLocation()
   {
-    return locations;
+    return location;
   }
 
   /**
-   * @param locations
-   *          the locations to set
+   * @param loc
    */
-  public void setLocations(Vector<EmblFeatureLocations> locations)
+  public void setLocation(String loc)
   {
-    this.locations = locations;
+    this.location = loc;
   }
 
   /**