package iri;
import java.lang.reflect.Method;
public class JLRMInvoke2 extends FormattingHelper {
public String runner() {
return "ran";
}
public String newmethod() {
return "alsoran";
}
public String run() throws Exception {
Method m = Method.class.getMethod("invoke", Object.class, Object[].class);
Method mm = JLRMInvoke2.class.getDeclaredMethod("newmethod");
String s = (String) m.invoke(mm, this, (Object[]) null);
return s;
}
public static void main(String[] argv) throws Exception {
System.out.println(new JLRMInvoke2().run());
}
}