score and visible copy construction
authorjprocter <Jim Procter>
Thu, 26 Apr 2007 15:02:37 +0000 (15:02 +0000)
committerjprocter <Jim Procter>
Thu, 26 Apr 2007 15:02:37 +0000 (15:02 +0000)
src/jalview/datamodel/AlignmentAnnotation.java

index d3d25d9..acb02b1 100755 (executable)
@@ -306,6 +306,11 @@ Loading...
     this.height = annotation.height;
     this.label = annotation.label;
     this.padGaps = annotation.padGaps;
+    this.visible = annotation.visible;
+    if (this.hasScore = annotation.hasScore)
+    {
+      this.score = annotation.score;
+    }
     if (threshold!=null) {
       threshold = new GraphLine(annotation.threshold);
     }