Non esiste un modo semplice per ottenere un oggetto di tipo Method che rappresenti il metodo in esecuzione?
L'unico modo che trovo per ottenerlo è
codice:
public String methodName(Object obj1, Object obj2) {
 this.getClass().getMethod("methodName", {obj1.getClass(), obj2.getClass()});
}
Mi sembra un po' inutilmente complicato...