JAL-2805 name changed of interfaces for consistency
[jalview.git] / src / jalview / ext / archaeopteryx / ExternalLoadedTreeAssociationI.java
1 package jalview.ext.archaeopteryx;
2
3 import jalview.datamodel.SequenceI;
4
5 /**
6  * Note that this will take anything as a Tree object.
7  * 
8  * @author kjvanderheide
9  *
10  * @param <T>
11  */
12 interface ExternalLoadedTreeAssociationI<T>
13 {
14   public void associateLeavesToSequences(SequenceI[] seqs, T tree);
15 }