Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] java.lang.IllegalAccessError

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


Back to the top