AlignmentAnnotation[] tmp;
for (int s = 0; s < command.seqs.length; s++)
{
- command.seqs[s].zapCursor();
+ command.seqs[s].sequenceChanged();
if (modifyVisibility)
{
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();
}