X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FContactMapHolderI.java;fp=src%2Fjalview%2Fdatamodel%2FContactMapHolderI.java;h=624a03ee0af6dc6917399d200bef65b2d462ec74;hb=0eda79421bb03c19e3b74c4b83b1644ca12ea66c;hp=0000000000000000000000000000000000000000;hpb=4441bd429663862f7746542dc94c2834884f31e3;p=jalview.git diff --git a/src/jalview/datamodel/ContactMapHolderI.java b/src/jalview/datamodel/ContactMapHolderI.java new file mode 100644 index 0000000..624a03e --- /dev/null +++ b/src/jalview/datamodel/ContactMapHolderI.java @@ -0,0 +1,21 @@ +package jalview.datamodel; + +import java.util.Collection; + +public interface ContactMapHolderI +{ + /** + * resolve a contact list instance (if any) associated with the annotation row + * and column position + * + * @param _aa + * @param column + * @return + */ + ContactListI getContactListFor(AlignmentAnnotation _aa, int column); + + AlignmentAnnotation addContactList(ContactMatrixI cm); + + Collection getContactMaps(); + +}