Package org.eclipse.dltk.internal.ui.wizards.dialogfields

Examples of org.eclipse.dltk.internal.ui.wizards.dialogfields.SelectionButtonDialogFieldGroup


    gd.horizontalSpan = nColumns;
    Label label = new Label(container, SWT.None);
    label.setText("Which method stubs would you like to create?");
    label.setLayoutData(gd);

    setMethodStubButtons(new SelectionButtonDialogFieldGroup(SWT.CHECK, new String[] { "Su&perclass constructor",
        "In&herited abstract methods" }, 1));
    methodStubButtons.doFillIntoGrid(container, nColumns - 1);
    DialogField.createEmptySpace(container);

    methodStubButtons.setSelection(1, true);
View Full Code Here


    interfaceDialog.doFillIntoGrid(container, nColumns);
  }

  protected void createClassModifierControls() {
    String[] buttonsName = { "abs&tract", "fina&l" };
    classModifierField = new SelectionButtonDialogFieldGroup(SWT.CHECK, buttonsName, nColumns);
    classModifierField.setLabelText("Modifiers:");
    classModifierField.doFillIntoGrid(container, nColumns);

    classModifierField.setDialogFieldListener(new IDialogFieldListener() {
View Full Code Here

    scriptGroup = new Group(result, SWT.NONE);
    scriptGroup.setLayout(new GridLayout(3, false));
    scriptGroup.setLayoutData(gd);
    scriptGroup.setText(getScriptLabel());

    buttonGroup = new SelectionButtonDialogFieldGroup(SWT.RADIO,
        new String[] { getProjectChoiceLabel(),
            getGlobalChoiceLabel() }, 2);
    buttonGroup.setLabelText(getButtonGroupLabel());
    buttonGroup.doFillIntoGrid(scriptGroup, 3);
    buttonGroup
View Full Code Here

TOP

Related Classes of org.eclipse.dltk.internal.ui.wizards.dialogfields.SelectionButtonDialogFieldGroup

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.