JAL-2526 zapCursor() renamed sequenceChanged()
[jalview.git] / src / jalview / datamodel / SequenceI.java
index 0f78bdb..18f0948 100755 (executable)
@@ -522,7 +522,9 @@ public interface SequenceI extends ASequenceI
   List<SequenceFeature> findFeatures(int from, int to, String... types);
 
   /**
-   * Invalidate any cursors on the sequence (e.g. after an edit)
+   * Method to call to indicate that the sequence (characters or alignment/gaps)
+   * has been modified. Provided to allow any cursors on residue/column
+   * positions to be invalidated.
    */
-  public void zapCursor();
+  void sequenceChanged();
 }