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

com.tvd12.ezyhttp.server.management.data.JavaMethod Maven / Gradle / Ivy

The newest version!
package com.tvd12.ezyhttp.server.management.data;

import lombok.Getter;

import java.lang.reflect.Method;

@Getter
public class JavaMethod {
    private final String name;
    private final String clazz;
    private final String packet;

    public JavaMethod(Method method) {
        this.name = method.getName();
        this.clazz = method.getDeclaringClass().getSimpleName();
        this.packet = method.getDeclaringClass().getPackage().getName();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy