DialogFieldUtils.fillControls(this, m_packageField, COLUMNS, 60);
}
// entry point
{
new Label(this, SWT.NONE); // filler
m_createEntryPointField = new SelectionButtonDialogField(SWT.CHECK);
m_createEntryPointField.setLabelText("Create EntryPoint and public resources");
m_createEntryPointField.setSelection(true);
m_createEntryPointField.doFillIntoGrid(this, COLUMNS - 1);
// use MVP
{
new Label(this, SWT.NONE); // filler
m_createEntryPointMVPField = new SelectionButtonDialogField(SWT.CHECK);
m_createEntryPointMVPField.setLabelText("Use MVP framework");
m_createEntryPointMVPField.setSelection(false);
//m_createEntryPointMVPField.doFillIntoGrid(this, COLUMNS - 1);
GridDataFactory.create(m_createEntryPointMVPField.getSelectionButton(this)).spanH(
COLUMNS - 1).grab().fill().indentH(10);