configureFormsItems(nameItem, WIDTH_FIELD, HEIGHT_FIELD, constants.name(), nameValue);
final TextItem initialEstimationItem = new TextItem("fInitialEstimation");
configureFormsItems(initialEstimationItem, WIDTH_FIELD, HEIGHT_FIELD, constants.initialEstimation(), initialEstimationValue);
CheckboxItem assignedItem = new CheckboxItem("fAssigned");
configureFormsCheckboxItem(assignedItem, WIDTH_FIELD_CHECK, constants.assigned(), assignedValue);
CheckboxItem plannedItem = new CheckboxItem("fPlanned");
configureFormsCheckboxItem(plannedItem, WIDTH_FIELD_CHECK, constants.planned(), plannedValue);
CheckboxItem doneItem = new CheckboxItem("fDone");
configureFormsCheckboxItem(doneItem, WIDTH_FIELD_CHECK, constants.done(), doneValue);
final TextAreaItem descriptionItem = new TextAreaItem("fDescription");
configureFormsItems(descriptionItem, WIDTH_FIELD, HEIGHT_FIELD_AREA, constants.description(), descriptionValue);