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

org.xson.web.xml.MethodObject Maven / Gradle / Ivy

Go to download

xco-web is an easy to use control layer framework, is part of the SOA system, using xml language to describe the controller.

The newest version!
package org.xson.web.xml;

import java.lang.reflect.Method;

public class MethodObject {

	private Method	method;

	private Object	instance;

	public MethodObject(Method method, Object instance) {
		this.method = method;
		this.instance = instance;
	}

	public Method getMethod() {
		return method;
	}

	public Object getInstance() {
		return instance;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy