1 23 24 package org.objectweb.fractal.julia.perf.controllers; 25 26 import org.objectweb.fractal.julia.perf.controllers.MOP; 27 28 import java.lang.reflect.Method ; 29 30 public class MOPController implements MOP { 31 32 public Object handleMethodCall (Object target, Method m, Object [] args) { 33 try { 34 return m.invoke(target, args); 35 } catch (Exception e) { 36 return null; 37 } 38 } 39 } 40 | Popular Tags |