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

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


    if (size < length) {
      System.arraycopy(allSourceFolders, 0, allSourceFolders = new IPackageFragmentRoot[size], 0, size);
    }

    // Search all secondary types on scope
    new BasicSearchEngine().searchAllSecondaryTypeNames(allSourceFolders, nameRequestor, waitForIndexes, monitor);

    // Build types from paths
    Iterator packages = secondaryTypes.values().iterator();
    while (packages.hasNext()) {
      HashMap types = (HashMap) packages.next();
View Full Code Here


            return; // accept only top level types
          storage.acceptType(packageName, simpleTypeName, enclosingTypeNames, modifiers, access);
        }
      };
      try {
        new BasicSearchEngine(this.workingCopies).searchAllTypeNames(
          null,
          SearchPattern.R_EXACT_MATCH,
          name,
          SearchPattern.R_EXACT_MATCH,
          searchFor,
View Full Code Here

        }
      };
      try {
        int matchRule = SearchPattern.R_PREFIX_MATCH;
        if (camelCaseMatch) matchRule |= SearchPattern.R_CAMELCASE_MATCH;
        new BasicSearchEngine(this.workingCopies).searchAllTypeNames(
          qualification,
          SearchPattern.R_EXACT_MATCH,
          simpleName,
          matchRule, // not case sensitive
          searchFor,
View Full Code Here

TOP

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

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.