I have a big problem.
I wont to get Event from JVM when some function run.
for example I have
public Interface MyInt
{
public void myfunction();
}
class SomeClass implements MyInt
{
public void myfuncton()
{
//TODO write your code here.
}
}
Can I write some monitor which notify me when the method myfuncton run.