Can I get class localization from JoinPoint?
I tried to use
joinPoint.getSignature().toShortString()
joinPoint.getThis().getClass().getSimpleName()
joinPoint.getTarget().getClass().getSimpleName()
but I all I got was:
RMIServer.main(..)
but I need something like
project1.package1.package2.RMIServer
Is it possible to obtain that information from JoinPoint?
I used:
jp.getSignature().toLongString()and I got:public static void hello.RMIClient.main(java.lang.String[])instead of using
joinPoint.getSignature().toShortString()(resultMIClient.main(..))