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

Examples of org.aspectj.org.eclipse.jdt.internal.core.builder.ReferenceCollection.includes()


    }
    int newlyAffectedFiles = 0;
    for (Iterator<Map.Entry<File, ReferenceCollection>> i = references.entrySet().iterator(); i.hasNext();) {
      Map.Entry<File, ReferenceCollection> entry = i.next();
      ReferenceCollection refs = entry.getValue();
      if (refs != null && refs.includes(qualifiedNames, simpleNames)) {
        if (listenerDefined()) {
          getListener().recordDecision(
              toString() + ": type " + new String(className) + " is depended upon by '" + entry.getKey() + "'");
        }
        newlyAffectedFiles++;
View Full Code Here


    // System.err.println("qualif: " + qualifiedStrings);

    for (Iterator<Map.Entry<File, ReferenceCollection>> i = references.entrySet().iterator(); i.hasNext();) {
      Map.Entry<File, ReferenceCollection> entry = i.next();
      ReferenceCollection refs = entry.getValue();
      if (refs != null && refs.includes(qualifiedNames, simpleNames)) {
        File file = entry.getKey();
        if (file.exists()) {
          if (!lastTimeSources.contains(file)) { // ??? O(n**2)
            if (listenerDefined()) {
              getListener().recordDecision("Need to recompile '" + file.getName().toString() + "'");
View Full Code Here

    //System.err.println("qualif: " + qualifiedStrings);

    for (Iterator i = references.entrySet().iterator(); i.hasNext();) {
      Map.Entry entry = (Map.Entry) i.next();
      ReferenceCollection refs = (ReferenceCollection)entry.getValue();
      if (refs != null && refs.includes(qualifiedNames, simpleNames)) {
        File file = (File)entry.getKey();
        if (file.exists()) {
          if (!lastTimeSources.contains(file)) {  //??? O(n**2)
            addTo.add(file);
          }
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.