X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FAlignmentAnnotation.java;h=d85c3d894ca5775d0424799d8a29d3152a2efc2b;hb=481ae9f847bc4f1437b2cfbf6c61ed040bc61892;hp=7e6b904e28f75530d00d6fd6fd6bf6c5869aac1b;hpb=b5fcfce875f7c0b9d1bd00e7b6ec1a1b34ddeed5;p=jalview.git diff --git a/src/jalview/datamodel/AlignmentAnnotation.java b/src/jalview/datamodel/AlignmentAnnotation.java index 7e6b904..d85c3d8 100755 --- a/src/jalview/datamodel/AlignmentAnnotation.java +++ b/src/jalview/datamodel/AlignmentAnnotation.java @@ -142,7 +142,8 @@ public class AlignmentAnnotation scaleColLabel = true; _markRnaHelices(); } - // jalview.bin.Console.outPrintln("featuregroup " + _rnasecstr[0].getFeatureGroup()); + // jalview.bin.Console.outPrintln("featuregroup " + + // _rnasecstr[0].getFeatureGroup()); } @@ -309,7 +310,8 @@ public class AlignmentAnnotation public static final int CONTACT_MAP = 4; /** - * property that when set to non-empty string disables display of column groups defined on the contact matrix + * property that when set to non-empty string disables display of column + * groups defined on the contact matrix */ public static final String CONTACT_MAP_NOGROUPS = "CMNOGRPS"; @@ -446,7 +448,8 @@ public class AlignmentAnnotation } } - // jalview.bin.Console.outPrintln("displaychar " + annotations[i].displayCharacter); + // jalview.bin.Console.outPrintln("displaychar " + + // annotations[i].displayCharacter); if (annotations[i].displayCharacter == null || annotations[i].displayCharacter.length() == 0) @@ -1750,23 +1753,30 @@ public class AlignmentAnnotation } return aa; } - + /** - * convenience method to check for the 'CONTACT_MAP_NOGROUPS' property for this alignment annotation row - * @return true if no CONTACT_MAP_NOGROUPS property is found, or it is set to "" + * convenience method to check for the 'CONTACT_MAP_NOGROUPS' property for + * this alignment annotation row + * + * @return true if no CONTACT_MAP_NOGROUPS property is found, or it is set to + * "" */ public boolean isShowGroupsForContactMatrix() { - return getProperty(AlignmentAnnotation.CONTACT_MAP_NOGROUPS)==null || "".equals(getProperty(AlignmentAnnotation.CONTACT_MAP_NOGROUPS)); + return getProperty(AlignmentAnnotation.CONTACT_MAP_NOGROUPS) == null + || "".equals( + getProperty(AlignmentAnnotation.CONTACT_MAP_NOGROUPS)); } + /** * set the 'CONTACT_MAP_NOGROUPS' property for this alignment annotation row + * * @see isShowGroupsForContactMatrix */ public void setShowGroupsForContactMatrix(boolean showGroups) { - setProperty(AlignmentAnnotation.CONTACT_MAP_NOGROUPS, showGroups ? "" : "nogroups"); + setProperty(AlignmentAnnotation.CONTACT_MAP_NOGROUPS, + showGroups ? "" : "nogroups"); } - }