JAL-1953 more progress on interfaces, jalview binding still problematic
[jalview.git] / src / jalview / ext / treeviewer / ExternalTreeParserI.java
1 package jalview.ext.treeviewer;
2
3 import java.io.IOException;
4
5 public interface ExternalTreeParserI
6  {
7   public ExternalTreeI[] parse() throws IOException;
8
9   public void setSource(Object source) throws IOException;
10
11   public String getName();
12
13  }