JAL-2844 partitioning code made slightly clearer
[jalview.git] / forester / java / src / org / forester / go / GoNameSpace.java
index c9dc103..51932ec 100644 (file)
 // 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.go;
 
 public class GoNameSpace {
 
-    public final String           MOLECULAR_FUNCTION_STR = "molecular_function";
-    public final String           BIOLOGICAL_PROCESS_STR = "biological_process";
-    public final String           CELLULAR_COMPONENT_STR = "cellular_component";
-    public final String           UNASSIGNED_STR         = "unassigned";
+    public final static String    MOLECULAR_FUNCTION_STR = "molecular_function";
+    public final static String    BIOLOGICAL_PROCESS_STR = "biological_process";
+    public final static String    CELLULAR_COMPONENT_STR = "cellular_component";
+    public final static String    UNASSIGNED_STR         = "unassigned";
     private final GoNamespaceType _type;
 
     public GoNameSpace( final GoNamespaceType type ) {