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

org.nico.aoc.aspect.point.AspectPoint 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;

/** 
 * Load the information of the agent and provide the agent method to execute the entry.
 * 
 * @author nico
 * @version createTime:2018年3月7日 下午10:32:06
 */

public class AspectPoint{
	
	protected Object obj;
	
	protected Method method;
	
	protected Object[] args;
	
	public AspectPoint(Object obj, Method method, Object[] args) {
		this.obj = obj;
		this.method = method;
		this.args = args;
	}

	public Object getObj() {
		return obj;
	}

	public void setObj(Object obj) {
		this.obj = obj;
	}

	public Method getMethod() {
		return method;
	}

	public void setMethod(Method method) {
		this.method = method;
	}

	public Object[] getArgs() {
		return args;
	}

	public void setArgs(Object[] args) {
		this.args = args;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy