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

org.onetwo.common.delegate.DelegateFactory Maven / Gradle / Ivy

There is a newer version: 4.7.2
Show newest version
package org.onetwo.common.delegate;

final public class DelegateFactory {

	public static DelegateMethodImpl create(Object delegate, String method, Class...argTypes){
		DelegateMethodImpl delegateObject = new DelegateMethodImpl(delegate, method, argTypes);
		return delegateObject;
	}

	public static MutiDelegate define(Class...argTypes){
		MutiDelegate delegate = new MutiDelegate(argTypes);
		return delegate;
	}
	
	private DelegateFactory(){};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy