alignmentProperties added
[jalview.git] / src / jalview / datamodel / AlignmentI.java
index a43b259..96b1972 100755 (executable)
@@ -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);
 }