JAL-1551
authorJim Procter <jprocter@issues.jalview.org>
Fri, 25 Mar 2016 14:49:52 +0000 (14:49 +0000)
committerJim Procter <jprocter@issues.jalview.org>
Fri, 25 Mar 2016 14:50:03 +0000 (14:50 +0000)
src/jalview/datamodel/SequenceGroup.java

index 0e8fa17..c9afec7 100755 (executable)
@@ -894,6 +894,7 @@ public class SequenceGroup implements AnnotatedCollectionI
   /**
    * @return the representative sequence for this group
    */
+  @Override
   public SequenceI getSeqrep()
   {
     return seqrep;
@@ -906,6 +907,7 @@ public class SequenceGroup implements AnnotatedCollectionI
    * @param seqrep
    *          the seqrep to set (null means no sequence representative)
    */
+  @Override
   public void setSeqrep(SequenceI seqrep)
   {
     this.seqrep = seqrep;
@@ -915,6 +917,7 @@ public class SequenceGroup implements AnnotatedCollectionI
    * 
    * @return true if group has a sequence representative
    */
+  @Override
   public boolean hasSeqrep()
   {
     return seqrep != null;