}
@Override
public void createTextFields(Composite parent) {
this.featuresList = null;
ProfileDTO profile = node.getProfile();
String sectionTitle = profile.getId();
Composite inner = createSectionComposite(sectionTitle, new GridData(GridData.FILL_BOTH));
createProfileForm(profile, inner);
createLabel(inner, Messages.profileParentsLabel);
parentsForm.createColumnsViewer(inner);
parentsForm.setProfilesViewerInput(node.getVersionNode());
parentsForm.getProfilesViewer().setContentProvider(new ProfileParentsContentProvider(node));
GridData gridData = new GridData(GridData.FILL_HORIZONTAL);
gridData.horizontalSpan = 2;
parentsForm.getProfilesViewer().getTree().setLayoutData(gridData);
List<ProfileDTO> parents = profile.getParents();
parentsForm.setCheckedProfiles(parents);
}