org.xblackcat.sjpu.skel.IMethodBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sjpu-dbah Show documentation
Show all versions of sjpu-dbah Show documentation
Service for generating DB access logic in simple way via interfaces and annotations
package org.xblackcat.sjpu.skel;
import javassist.CannotCompileException;
import javassist.CtClass;
import javassist.NotFoundException;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
/**
* 11.03.13 13:16
*
* @author xBlackCat
*/
public interface IMethodBuilder {
void buildMethod(CtClass accessHelper, Class> targetClass, Method m) throws NotFoundException, ReflectiveOperationException, CannotCompileException;
Class getAnnotationClass();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy