[aspectj-users] A failure with complex generic type

2013-04-15 Thread Giat, Hana
Using aspectjtools 1.7.2 I get the following exception: INFO: abort ABORT -- (IllegalStateException) Expecting .,<, or ;, but found / while unpacking Lcom/a/a/b/t.com/a/a/b/af.com/a/a/b/ag;Ljava/util/ListIterator; Expecting .,<, or ;, but found / while unpacking Lcom/a/a/b/t.com/a/a/b/af.com/a/

Re: [aspectj-users] JoinPoint.getArgs() in multiple aspects on same joinpoint

2013-04-15 Thread Brett Randall
I also don't know how you can bind the complete set of arguments for any/all method signatures. It might be a decent enhancement-request - others on the list may know whether access this has been previously proposed. For completeness, I believe that the fix for https://bugs.eclipse.org/bugs/show_

Re: [aspectj-users] JoinPoint.getArgs() in multiple aspects on same joinpoint

2013-04-15 Thread Jay Roberts
Binding all the args and/or allowing some sort of read only of the closure state - actually, these are both useful and the read only of the closure state really closes the loop so that a downstream aspect can see exactly what will be executed upon. That info and the original getArgs both are ne

Re: [aspectj-users] Usage question

2013-04-15 Thread Andy Clement
Hi Archie, What you are trying to do sounds reasonable. The unusual thing I do notice is that you have the inpath and destdir set the same for your final iajc call. That could introduce weirdness. The only strict ordering policy for processing files is that aspects are processed before classes.

Re: [aspectj-users] Annotation Values in Matching Expressions

2013-04-15 Thread Andy Clement
I have the array support just about done, but then I got a bit bogged down in the rest of the proposal that Matthew discusses in the bugzilla he referenced. I'll try and get that array support out soon. cheers Andy On 13 April 2013 22:09, Matthew Adams wrote: > That's an enhancement. See > h

Re: [aspectj-users] A failure with complex generic type

2013-04-15 Thread Andy Clement
Hi Hana, Looks like you found a new bug. Can you raise a bugzilla for it? (here https://bugs.eclipse.org/bugs/enter_bug.cgi?product=AspectJ ). If you could include the source code declarations involved then that would be helpful (I probably don't need the code itself, just the declarations). chee

[aspectj-users] LTW: Are there any posibilities to avoid using ajc and overcome NoSuchMethodError

2013-04-15 Thread Gokul
Hi, My project uses a custom plugin framework, where plugin's are JAR files loaded at run-time by the framework using custom class loader. We have several plugin JAR files that are to be loaded and AOP looks to be a perfect solution to add a particular functionality across plugins. Following