scaleColLabel = true;
_markRnaHelices();
}
- // jalview.bin.Console.outPrintln("featuregroup " + _rnasecstr[0].getFeatureGroup());
+ // jalview.bin.Console.outPrintln("featuregroup " +
+ // _rnasecstr[0].getFeatureGroup());
}
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";
}
}
- // 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)
}
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");
}
-
}