Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » AspectJ » java.lang.IllegalAccessError
java.lang.IllegalAccessError [message #599182] Sat, 25 October 2008 16:03
Mauro is currently offline MauroFriend
Messages: 79
Registered: July 2009
Member
I'm trying to match calls to
javax.el.CompositeELResolver.FeatureIterator.next() with the following
aspect

public privileged aspect CompositeELResolver_FeatureIterator_next{
after() returning(Object retVal): !cflow(adviceexecution()) && call(*
*.next(..)) && target(javax.el.CompositeELResolver.FeatureIterator){
System.err.println("MATCH");
}
}

but I provoke an IllegalAccessError...
FeatureIterator is a private inner class but It isn' t a problem in
other similar cases

any Idea on how to avoid it?

thanks,
Mauro
Previous Topic:java.lang.IllegalAccessError
Next Topic:How to run automated PDE Build with AspectJ Support?
Goto Forum:
  


Current Time: Fri Apr 26 17:10:21 GMT 2024

Powered by FUDForum. Page generated in 0.02731 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top