in progress
[jalview.git] / forester / java / src / org / forester / archaeopteryx / webservices / BasicPhylogeniesWebserviceClient.java
index 3e613e2..2187a12 100644 (file)
@@ -5,7 +5,7 @@
 //
 // Copyright (C) 2008-2010 Christian M. Zmasek
 // Copyright (C) 2008-2010 Burnham Institute for Medical Research
-// 
+//
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
@@ -15,7 +15,7 @@
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 // Lesser General Public License for more details.
-// 
+//
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 package org.forester.archaeopteryx.webservices;
 
 import org.forester.archaeopteryx.webservices.WebservicesManager.WsPhylogenyFormat;
-import org.forester.util.ForesterUtil.PhylogenyNodeField;
+import org.forester.phylogeny.PhylogenyMethods;
 
 public class BasicPhylogeniesWebserviceClient implements PhylogeniesWebserviceClient {
 
-    private final String             _desc;
-    private final String             _instructions;
-    private final String             _menu_name;
-    private final String             _name;
-    private final WsPhylogenyFormat  _format;
-    private final String             _url;
-    private final boolean            _integer;
-    private final PhylogenyNodeField _node_field;
-    private final Object             _proc_inst;
-    private final String             _ref;
+    private final String                              _desc;
+    private final String                              _instructions;
+    private final String                              _menu_name;
+    private final String                              _name;
+    private final WsPhylogenyFormat                   _format;
+    private final String                              _url;
+    private final boolean                             _integer;
+    private final PhylogenyMethods.PhylogenyNodeField _node_field;
+    private final Object                              _proc_inst;
+    private final String                              _ref;
 
     public BasicPhylogeniesWebserviceClient( final String name,
                                              final String menu_name,
                                              final String desc,
                                              final String instructions,
                                              final WsPhylogenyFormat format,
-                                             final PhylogenyNodeField node_field,
+                                             final PhylogenyMethods.PhylogenyNodeField node_field,
                                              final String url,
                                              final boolean integer,
                                              final String ref,
@@ -85,7 +85,7 @@ public class BasicPhylogeniesWebserviceClient implements PhylogeniesWebserviceCl
     }
 
     @Override
-    public PhylogenyNodeField getNodeField() {
+    public PhylogenyMethods.PhylogenyNodeField getNodeField() {
         return _node_field;
     }