On my current project, I\'ve felt the need to create a sort of simulated callback system in Java using reflection. However, I\'m having issues getting my reflection to actua
Your method is private but getMethod() only returns public method.
getMethod()
You need to use getDeclaredMethod().
getDeclaredMethod()