public PropertyCheckbox(
     int topLeftX, int topLeftY, int width, int height, StructureValidationProperty property) {
   super(topLeftX, topLeftY, width, height, "");
   this.prop = property;
   setChecked(prop.getDataBoolean());
 }