Package org.eclipse.php.internal.ui.preferences

Examples of org.eclipse.php.internal.ui.preferences.IStatusChangeListener


    final Group group = new Group(composite, SWT.NONE);
    group.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
    group.setLayout(this.composerProjectWizardFirstPage.initGridLayout(new GridLayout(numColumns, false), true));
    group.setText("");

    fConfigurationBlock = createConfigurationBlock(new IStatusChangeListener() {
      public void statusChanged(IStatus status) {
      }
    }, (IProject) null, null);
    fConfigurationBlock.setMinimumVersion(minimumVersion);
    fConfigurationBlock.createContents(group);
View Full Code Here


    return ResourcesPlugin.getWorkspace().getRoot().getProject(
        "DUMMY______________Project"); //$NON-NLS-1$
  }

  protected IStatusChangeListener getNewStatusChangedListener() {
    return new IStatusChangeListener() {
      public void statusChanged(IStatus status) {
      }
    };
  }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.ui.preferences.IStatusChangeListener

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.