Package org.eclipse.wb.internal.core.utils.dialogfields

Examples of org.eclipse.wb.internal.core.utils.dialogfields.SelectionButtonDialogField


      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);
View Full Code Here


      DialogFieldUtils.fillControls(this, m_packageField, columns, 60);
    }
    // HTML package
    {
      new Label(this, SWT.NONE); // filler
      m_createHTMLField = new SelectionButtonDialogField(SWT.CHECK);
      m_createHTMLField.setLabelText("Create HTML file to allow visual design");
      m_createHTMLField.setSelection(true);
      m_createHTMLField.doFillIntoGrid(this, columns - 1);
    }
    // "server" package
    {
      new Label(this, SWT.NONE); // filler
      m_createServerPackageField = new SelectionButtonDialogField(SWT.CHECK);
      m_createServerPackageField.setLabelText("Create \"server\" package for RemoteService's");
      m_createServerPackageField.setSelection(true);
      m_createServerPackageField.doFillIntoGrid(this, columns - 1);
    }
    // description
View Full Code Here

TOP

Related Classes of org.eclipse.wb.internal.core.utils.dialogfields.SelectionButtonDialogField

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.