Package org.aspectj.org.eclipse.jdt.internal.core.search

Examples of org.aspectj.org.eclipse.jdt.internal.core.search.AbstractSearchScope


     
    // Refresh internal scopes
    if (deltaToNotify != null) {
      Iterator scopes = this.manager.searchScopes.keySet().iterator();
      while (scopes.hasNext()) {
        AbstractSearchScope scope = (AbstractSearchScope)scopes.next();
        scope.processDelta(deltaToNotify);
      }
      JavaWorkspaceScope workspaceScope = this.manager.workspaceScope;
      if (workspaceScope != null)
        workspaceScope.processDelta(deltaToNotify);
    }
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.core.search.AbstractSearchScope

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.