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

Examples of org.eclipse.jdt.internal.ui.wizards.dialogfields.ComboDialogField


        handleFieldChanged(ASPECT_NAME);
      }
    });
    fAspectNameDialogField.setLabelText("Aspect Name:");

    fCrosscutTypeDialogField = new ComboDialogField(SWT.READ_ONLY);
    fCrosscutTypeDialogField.setDialogFieldListener(new IDialogFieldListener() {
      public void dialogFieldChanged(DialogField field) {
        fCrosscutTypeStatus = updateCrosscutType();
        handleFieldChanged(CROSSCUT_TYPE);
      }
    });
    fCrosscutTypeDialogField.setLabelText("Crosscut Type:");
    fCrosscutTypeDialogField.setItems(new String[] { "MethodCut", "MethodRedefineCut", "GetCut", "SetCut", "ThrowCut", "CatchCut"});

    fPointCutterDialogField = new ComboDialogField(SWT.READ_ONLY);
    fPointCutterDialogField.setDialogFieldListener(new IDialogFieldListener() {
      public void dialogFieldChanged(DialogField field) {
        fPointCutterStatus = updatePointCutter();
        handleFieldChanged(POINT_CUTTER);
      }
    });
    fPointCutterDialogField.setLabelText("Point Cutter:");

    fPointCutter1DialogField = new ComboDialogField(SWT.READ_ONLY);
    fPointCutter1DialogField.setLabelText("Specifier 1:");
    fPointCutter1DialogField.setEnabled(false);

    fPointCutter2DialogField = new ComboDialogField(SWT.READ_ONLY);
    fPointCutter2DialogField.setLabelText("Specifier 2:");
    fPointCutter2DialogField.setEnabled(false);
  }
View Full Code Here


                NewWizardMessages.NewClassWizardPage_methods_constructors, NewWizardMessages.NewClassWizardPage_methods_inherited
        };
        fMethodStubsButtons = new SelectionButtonDialogFieldGroup(SWT.CHECK, buttonNames3, 1);
        fMethodStubsButtons.setLabelText(NewWizardMessages.NewClassWizardPage_methods_label);
       
        fLifecycleMethodDialogField = new ComboDialogField(SWT.READ_ONLY);
        fLifecycleMethodDialogField.setLabelText(Messages.NewDSComponentWizardPage_LC_label);
    }
View Full Code Here

      fNameField.setDialogFieldListener(this);
      fPackageField = new StringDialogField();
      fPackageField.setLabelText("Top level package name:");
      fPackageField.setDialogFieldListener(this);

      fTemplateField = new ComboDialogField(SWT.READ_ONLY);
      fTemplateField.setLabelText("Project type:");
      List<String> types = new ArrayList<String>();
      for (ProjectType type : ProjectType.values()) {
        types.add(type.getDisplayString());
      }
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.ui.wizards.dialogfields.ComboDialogField

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.