X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FAlignmentI.java;h=96b197250107b2f9853aa39d7a209b0e9e27750f;hb=855f7a4bb3e8d5fcfa9059df64262fc73f0164be;hp=a43b259095bb6fe7de0dfd0c9ce02529bd49ffca;hpb=f0ffc133ce321432b868e0527a2ce0407e0121d1;p=jalview.git diff --git a/src/jalview/datamodel/AlignmentI.java b/src/jalview/datamodel/AlignmentI.java index a43b259..96b1972 100755 --- a/src/jalview/datamodel/AlignmentI.java +++ b/src/jalview/datamodel/AlignmentI.java @@ -165,7 +165,7 @@ public interface AlignmentI /** * Adds a new AlignmentAnnotation to this alignment - * @note Care should be taken to ensure that annotation is at + * @note Care should be taken to ensure that annotation is at * least as wide as the longest sequence in the alignment * for rendering purposes. */ @@ -226,7 +226,7 @@ public interface AlignmentI /** * Set the associated dataset for the alignment, or create one. - * @param dataset The dataset alignment or null to construct one. + * @param dataset The dataset alignment or null to construct one. */ public void setDataset(Alignment dataset); @@ -243,4 +243,8 @@ public interface AlignmentI * @return CigarArray */ public CigarArray getCompactAlignment(); + + public void setProperty(Object key, Object value); + + public Object getProperty(Object key); }