Can a method use reflection to find its' own name
example;
public void iDontCareAboutThisMethodName()
{
}
public void iWantToKnowThisMethodName()
{
// can I use reflection from inside this method and
// somehow determine the method name I am presently in
// something like
// System.out.println("I am now in method " + this.getClass().getCurrentMethodName());
}

