Searched refs:mainMethod (Results 1 – 2 of 2) sorted by relevance
265 final Method mainMethod = clazz.getMethod("start");266 mainMethod.invoke(app);281 … final Method mainMethod = clazz.getMethod("main", (new String[0]).getClass());282 mainMethod.invoke(app, new Object[]{new String[0]});
219 Method mainMethod = c.getMethod("main", methodArgTypes); in runAnt() local223 Integer res = (Integer)mainMethod.invoke(null, methodArgs); in runAnt()