From: Jim Procter Date: Thu, 2 Aug 2018 10:48:54 +0000 (+0100) Subject: JAL-2719 JAL-1264 add annotation elements so “Add Reference Annotation” menu should... X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=e6f25fadd43d5865b62c5ef749ad12f6c9a3a583;p=jalview.git JAL-2719 JAL-1264 add annotation elements so “Add Reference Annotation” menu should be shown for the dataset annotation --- diff --git a/test/jalview/gui/PopupMenuTest.java b/test/jalview/gui/PopupMenuTest.java index 6f60588..324c82f 100644 --- a/test/jalview/gui/PopupMenuTest.java +++ b/test/jalview/gui/PopupMenuTest.java @@ -238,6 +238,7 @@ public class PopupMenuTest // PDB.secondary structure on Sequence0 AlignmentAnnotation annotation = new AlignmentAnnotation( "secondary structure", "", 0); + annotation.annotations = new Annotation[] { new Annotation(2f) }; annotation.setCalcId("PDB"); seqs.get(0).getDatasetSequence().addAlignmentAnnotation(annotation); if (addToSequence) @@ -252,6 +253,7 @@ public class PopupMenuTest // PDB.Temp on Sequence1 annotation = new AlignmentAnnotation("Temp", "", 0); annotation.setCalcId("PDB"); + annotation.annotations = new Annotation[] { new Annotation(2f) }; seqs.get(1).getDatasetSequence().addAlignmentAnnotation(annotation); if (addToSequence) { @@ -265,6 +267,7 @@ public class PopupMenuTest // JMOL.secondary structure on Sequence0 annotation = new AlignmentAnnotation("secondary structure", "", 0); annotation.setCalcId("Jmol"); + annotation.annotations = new Annotation[] { new Annotation(2f) }; seqs.get(0).getDatasetSequence().addAlignmentAnnotation(annotation); if (addToSequence) {