Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
aclement 757004ca67 tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers před 17 roky
..
withoutMethod tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers před 17 roky
A.aj tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers před 17 roky
C.java tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers před 17 roky
C1.java tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers před 17 roky
MyStringBuilder.java tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers před 17 roky
README.txt tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers před 17 roky
Tracing.aj tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers před 17 roky
simple.jar tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers před 17 roky
stringBuilder.jar tests and fix for 149908: NPE in org.aspectj.weaver.MemberImpl.getModifiers před 17 roky

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