package jalview.ext.treeviewer; import java.io.IOException; public interface TreeParserI { public void parse() throws IOException; public void setSource(Object source) throws IOException; public String getName(); public TreeI[] getParsedTrees(); }