JAL-2805 more interface name changing
[jalview.git] / src / jalview / ext / forester / io / ForesterTreeParser.java
@@ -12,13 +12,13 @@ import org.forester.archaeopteryx.Archaeopteryx;
 import org.forester.archaeopteryx.MainFrame;
 import org.forester.util.ForesterUtil;
 
-public class TreeParser implements TreeParserI<MainFrame>
+public class ForesterTreeParser implements ExternalTreeParserI<MainFrame>
 {
   private final String filePath;
 
   private final File file;
 
-  public TreeParser(final String treeFilePath)
+  public ForesterTreeParser(final String treeFilePath)
   {
     final String possibleError = ForesterUtil.isReadableFile(treeFilePath);
     if (possibleError != null)
@@ -34,7 +34,7 @@ public class TreeParser implements TreeParserI<MainFrame>
 
   }
 
-  public TreeParser(final File treeFile) throws IOException
+  public ForesterTreeParser(final File treeFile) throws IOException
   {
     final String possibleError = ForesterUtil.isReadableFile(treeFile);
     if (possibleError != null)