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

pro.jk.ejoker.common.context.dev2.IEJokerSimpleContext Maven / Gradle / Ivy

There is a newer version: 3.0.7.1
Show newest version
package pro.jk.ejoker.common.context.dev2;

import java.lang.reflect.Type;

public interface IEJokerSimpleContext {

	/**
	 * 通过对象类型获取
	 * @param clazz
	 * @return
	 */
	public  T get(Class clazz);

	/**
	 * 通过对象类型获取,具备泛型限定的功能
	 * @param clazz
	 * @param pSign 泛型签名
	 * @return
	 */
	public  T get(Class clazz, Type... types);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy