~ubuntu-branches/ubuntu/wily/aspectj/wily-proposed

« back to all changes in this revision

Viewing changes to org.aspectj/modules/weaver/src/org/aspectj/weaver/ltw/LTWWorld.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2011-03-15 23:54:31 UTC
  • mfrom: (1.2.5 upstream)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20110315235431-iq2gxbsx08kpwuiw
* New upstream release.
* Updated Standards-Version to 3.9.1 (no changes needed).
* Fix local Javadoc links:
  - d/patches/07_javadoc_links.diff: Use locally installed
   javadoc packages and hyperlink with them.
  - d/control: Add B-D on default-java-doc and libasm3-java-doc.
* d/control: Drop B-D on itself (our new bootstrap infrastructure doesn't need
  that anymore).
* Split packages into :
  - aspectj: only contains CLI tools.
  - libaspectj-java: JAR librairies for /usr/share/java.
  - libaspectj-java-doc: 4 API's Javadoc.
  - aspectj-doc: Programming Guides and SDK Documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import org.aspectj.apache.bcel.classfile.JavaClass;
21
21
import org.aspectj.bridge.IMessageHandler;
22
22
import org.aspectj.util.LangUtil;
 
23
import org.aspectj.weaver.Dump.IVisitor;
23
24
import org.aspectj.weaver.ICrossReferenceHandler;
24
25
import org.aspectj.weaver.ReferenceType;
25
26
import org.aspectj.weaver.ReferenceTypeDelegate;
26
27
import org.aspectj.weaver.ResolvedType;
27
 
import org.aspectj.weaver.Dump.IVisitor;
28
28
import org.aspectj.weaver.bcel.BcelWorld;
29
29
import org.aspectj.weaver.loadtime.IWeavingContext;
30
30
import org.aspectj.weaver.reflect.AnnotationFinder;
66
66
                        concurrentMapClass = null;
67
67
                }
68
68
        }
69
 
        
 
69
 
70
70
        public boolean isDemotionActive() {
71
71
                return true;
72
72
        }
286
286
                super.accept(visitor);
287
287
        }
288
288
 
 
289
        public boolean isLoadtimeWeaving() {
 
290
                return true;
 
291
        }
 
292
 
289
293
}