(no commit message)
[jalview.git] / forester / java / src / org / forester / io / parsers / IteratingPhylogenyParser.java
1
2 package org.forester.io.parsers;
3
4 import java.io.IOException;
5
6 import org.forester.phylogeny.Phylogeny;
7
8 public interface IteratingPhylogenyParser {
9
10     public void reset() throws IOException;
11
12     public Phylogeny next() throws IOException;
13
14     public boolean hasNext();
15
16     public void setSource( final Object o ) throws IOException;
17 }