Hi all,
I have two Java Classes as follows :
public class A {
public int a =5;
}
and --
public class B {
public static void main(String[] args) {
System.out.println(new A().a);
}
}
Now i want to generate a log file (when the execution of main() method of class B ends) which tells me that "THE VARIABLE NAMED 'a' OF CLASS 'A' IS ACCESSED ONCE" .
PLEASE NOTE THAT I DON'T HAVE PERMISSION TO MODIFY THE SOURCE CODE OF EXISTING CLASS ..
So please tell me how to proceed to get the solution ..
Thanks.
Ganesh