use of org.talend.dataprofiler.core.ui.editor.composite.ContextComposite in project tdq-studio-se by Talend.
the class AbstractMetadataFormPage method createContextGroupSection.
/**
* create the Context Group section.
*
* @param form
* @param topComp
*/
public void createContextGroupSection(ScrolledForm form, Composite topComp) {
contextGroupSection = createSection(form, topComp, DefaultMessagesImpl.getString("AbstractMetadataFormPage.contextGroupSettingsSection"), // $NON-NLS-1$ //$NON-NLS-2$
DefaultMessagesImpl.getString("AbstractMetadataFormPage.contextGroupSettingsSectionDescription"));
Composite contextGroupSectionComp = toolkit.createComposite(contextGroupSection);
contextGroupSectionComp.setLayout(new GridLayout());
contextComposite = new ContextComposite((SupportContextEditor) currentEditor, contextGroupSectionComp, SWT.NONE);
contextGroupSection.setClient(contextGroupSectionComp);
}
Aggregations