void addSequenceGroup(SequenceGroup sequenceGroup);
/**
+ * Returns true if autocalculated annotations are shown above other
+ * annotations, false if below
+ *
+ * @return
+ */
+ boolean isShowAutocalculatedAbove();
+
+ /**
+ * Sets the flag for whether autocalculated annotations are shown above (true)
+ * or below (false) other annotations
+ *
+ * @param showAutocalculatedAbove
+ */
+ void setShowAutocalculatedAbove(boolean showAutocalculatedAbove);
+
+ /**
* Sets the sort order to apply to annotations
*
* @param sortAnnotationsBy
this.sortAnnotationsBy = sortAnnotationsBy;
}
+ @Override
public boolean isShowAutocalculatedAbove()
{
return showAutocalculatedAbove;
}
+ @Override
public void setShowAutocalculatedAbove(boolean showAutocalculatedAbove)
{
this.showAutocalculatedAbove = showAutocalculatedAbove;