Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
aclement 757004ca67 tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers il y a 17 ans
..
withoutMethod tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers il y a 17 ans
A.aj tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers il y a 17 ans
C.java tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers il y a 17 ans
C1.java tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers il y a 17 ans
MyStringBuilder.java tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers il y a 17 ans
README.txt tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers il y a 17 ans
Tracing.aj tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers il y a 17 ans
simple.jar tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers il y a 17 ans
stringBuilder.jar tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers il y a 17 ans

README.txt

This folder contains the code for two tests:

Case 1: A type that was on the classpath when a jar file was created is
not on the classpath when the aspects are being compiled and woven
with this jar on the inpath. This should result in a cantFindType
message.

Case 2: The type exists but one of it's members no longer does. This should
result in an unresolvableMember message.

To recreate required files for Case 1 :

1. Compile the MyStringBuilder.java in folder pr149908 type:

javac MyStringBuilder.java

2. ajc C.java -outjar simple.jar


To recreate the required files for Case 2:

1. Navigate to the withoutMethod folder

2. Compile MyStringBuilder.java into ..\stringBuilder.jar:

ajc MyStringBuilder.java -outjar ..\stringBuilder.jar