|
From: Hrishikesh P <hri...@gm...> - 2015-07-09 14:48:49
|
Hi,
How can I pass in the java class type to a method in Jython?
What I need to do is:
for method in tClass.getClass().getDeclaredMethods():
if method.isAnnotationPresent(Test.class):
# do something
but I cannot seem to pass in the Test.class as an argument.
Thanks.
|