JAL-281 ForesterParser now extends from AlignFile
[jalview.git] / src / jalview / ext / treeviewer / TreeParserI.java
index 00c8334..52b4f2c 100644 (file)
@@ -4,10 +4,12 @@ import java.io.IOException;
 
 public interface TreeParserI
  {
-  public TreeI[] parse() throws IOException;
+  public void parse() throws IOException;
 
   public void setSource(Object source) throws IOException;
 
   public String getName();
 
+  public TreeI[] getParsedTrees();
+
  }