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

io.github.lab515.utils.Calling Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
package io.github.lab515.utils;

import java.lang.reflect.Method;

public class Calling {
    public Method getMethod(){
        return ByteRunner.findMethod();
    }

    public void setValue(Class type, String method, String desc){
        args = null;
        target = null;
        this.type = type;
        this.method = method;
        this.desc = desc;
        handling = null;
        retVal = null;
        err = null;
        interceptorFlag = 0;
    }
    public Object[] args;
    public Object target;
    public Class type;
    public String method;
    public String desc;
    public Object handling;
    public Object retVal;
    public Throwable err;
    public int interceptorFlag;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy