All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nico.aoc.aspect.point.ProcessingAspectPoint Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package org.nico.aoc.aspect.point;

import java.lang.reflect.Method;

public class ProcessingAspectPoint extends AspectPoint{

	public ProcessingAspectPoint(Object beProxyObj, Method method, Object[] args) {
		super(beProxyObj, method, args);
	}

	public Object process() throws Throwable {
		return beProxyObj.getClass().getDeclaredMethod(method.getName(), method.getParameterTypes()).invoke(beProxyObj, args);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy