Package org.aspectj.ajdt.internal.compiler

Examples of org.aspectj.ajdt.internal.compiler.InterimCompilationResult.result()


    private boolean processDeletedFiles(Set deletedFiles) {
    for (Iterator iter = deletedFiles.iterator(); iter.hasNext();) {
      File  aDeletedFile = (File ) iter.next();
      InterimCompilationResult cr = (InterimCompilationResult)resultsFromFile.get(aDeletedFile);
      if (cr!=null) {
        Map compiledTypes = cr.result().compiledTypes;
        if (compiledTypes!=null) {
          for (Iterator iterator = compiledTypes.keySet().iterator(); iterator.hasNext();) {
            char[] className = (char[])iterator.next();
            ResolvedType rt = world.resolve(new String(className).replace('/','.'));
            if (rt.isAspect()) {
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.