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

ren.yale.java.method.ClassInfo Maven / Gradle / Ivy

There is a newer version: 1.1.9
Show newest version
package ren.yale.java.method;

import ren.yale.java.interceptor.Interceptor;

import java.util.ArrayList;
import java.util.List;

/**
 * Created by yale on 2018/1/31.
 */
public class ClassInfo {

    private String classPath="";

    private Object clazzObj;

    private Class clazz;
    private Interceptor[] befores;
    private Interceptor[] afters;

    public Interceptor[] getAfters() {
        return afters;
    }

    public void setAfters(Interceptor[] afters) {
        this.afters = afters;
    }

    private List methodInfoList = new ArrayList<>();


    public Interceptor[] getBefores() {
        return befores;
    }

    public void setBefores(Interceptor[] befores) {
        this.befores = befores;
    }

    public Class getClazz() {
        return clazz;
    }

    public void setClazz(Class clazz) {
        this.clazz = clazz;
    }


    public Object getClazzObj() {
        return clazzObj;
    }

    public void setClazzObj(Object clazzObj) {
        this.clazzObj = clazzObj;
    }
    public String getClassPath() {
        return classPath;
    }

    public void setClassPath(String classPath) {
        this.classPath = classPath;
    }

    public List getMethodInfoList() {
        return methodInfoList;
    }

    public void addMethodInfo(MethodInfo methodInfo) {
        methodInfoList.add(methodInfo);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy