private AttributeViewImpl createAttributeWidget(Attribute attribute) {
AttributeViewImpl attributeView = new AttributeViewImpl();
if (editingEnabled) {
attributeView.enableEditing();
}
AttributePresenter attributePresenter = new AttributePresenter(
attribute, attributeView, this.presenter);
childPresenters.put(attribute.getAttributeId(), attributePresenter);
Boolean checked = signedOff.get(attribute.getAttributeId());
attributeView.setSignedOff(checked == null ? false : checked);
attributeView.setLabelSuggestions(projectLabels);