protected void createSection(Section section, FormToolkit toolkit)
{
setTitle("Project Content");
Composite body = createTableWrapBody(2, toolkit);
Hyperlink link = toolkit.createHyperlink(body, "Contents:", SWT.NONE);
link.setHref(ContentsForm.PAGE_ID);
link.addHyperlinkListener(this);
toolkit.createLabel(body, "Manage the content that this bundle provides.");
link = toolkit.createHyperlink(body, "Dependencies:", SWT.NONE);
link.setHref(DependenciesForm.PAGE_ID);
link.addHyperlinkListener(this);
toolkit.createLabel(body,
"Manage the dependencies that this bundle needs to run.");
link = toolkit.createHyperlink(body, "Exports:", SWT.NONE);
link.setHref(ExportsForm.PAGE_ID);
link.addHyperlinkListener(this);
toolkit.createLabel(body, "Manage the resources that this bundle exports.");
}