moved to: https://sites.google.com/site/cmzmasek/home/software/forester
[jalview.git] / forester / java / src / org / forester / phylogeny / data / Identifier.java
index d3b4437..8a897af 100644 (file)
@@ -21,7 +21,7 @@
 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 //
 // Contact: phylosoft @ gmail . com
-// WWW: www.phylosoft.org/forester
+// WWW: https://sites.google.com/site/cmzmasek/home/software/forester
 
 package org.forester.phylogeny.data;
 
@@ -34,14 +34,12 @@ import org.forester.util.ForesterUtil;
 
 public final class Identifier implements PhylogenyData {
 
-    final public static String NCBI = "ncbi";
+    final public static String NCBI   = "ncbi";
     final public static String REFSEQ = "refseq";
-    
-    final private String _value;
-    final private String _provider;
-    final private String _value_provider;
-    
-   
+    final public static String SP     = "sp";
+    final private String       _value;
+    final private String       _provider;
+    final private String       _value_provider;
 
     public Identifier() {
         _value = "";
@@ -83,6 +81,10 @@ public final class Identifier implements PhylogenyData {
         return sb;
     }
 
+    public String getValuePlusProvider() {
+        return _value_provider;
+    }
+
     @Override
     public PhylogenyData copy() {
         return new Identifier( getValue(), getProvider() );