Package org.eclipse.php.internal.ui

Examples of org.eclipse.php.internal.ui.PHPUiPlugin


   */
  public void reconciled(Program ast, boolean forced,
      IProgressMonitor progressMonitor) {

    // see: https://bugs.eclipse.org/bugs/show_bug.cgi?id=58245
    PHPUiPlugin phpPlugin = PHPUiPlugin.getDefault();
    if (phpPlugin == null)
      return;

    // Always notify AST provider
    ISourceModule inputModelElement = (ISourceModule) getModelElement();

    phpPlugin.getASTProvider().reconciled(ast, inputModelElement,
        progressMonitor);
    this.fReconcileSelection = false;

    // Notify listeners
    Object[] listeners = fReconcilingListeners.getListeners();
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.ui.PHPUiPlugin

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.