Hi all,
I have a doubt regarding 'FAMIX.Invocation's.
Suppose I've this line of Java code:
startActivity(new Intent(this, ActivityTwo.class));
When I generate the mse (using VerveineJ) this result in a FAMIX.Invocation such as
(FAMIX.Invocation (id: 8005)
(candidates (ref: 9100))
(previous (ref: 3174))
(receiver (ref: 2547))
(sender (ref: 7328))
(signature 'startActivity(Intent)'))
The 'new Intent(…)' instead results in a FAMIX.Invocation such as
(FAMIX.Invocation (id: 8291)
(candidates (ref: 753))
(sender (ref: 430))
(signature 'Intent(Context,Class<?>)'))
I need to extract the 'ActivityTwo.class' argument. Is there a way to get it?
Thanks in advance for any sort of help.
Cheers,
RM