public final void setSectionRangeVisible(final boolean SECTION_RANGE_VISIBLE) {
sectionRangeVisibleProperty().set(SECTION_RANGE_VISIBLE);
}
public final BooleanProperty sectionRangeVisibleProperty() {
if (null == sectionRangeVisible) {
sectionRangeVisible = new SimpleBooleanProperty(this, "sectionRangeVisible", false);
}
return sectionRangeVisible;
}