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

net.md_5.bungee.event.EventHandlerMethod Maven / Gradle / Ivy

package net.md_5.bungee.event;

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import lombok.AllArgsConstructor;
import lombok.Getter;

@AllArgsConstructor
public class EventHandlerMethod
{

    @Getter
    private final Object listener;
    @Getter
    private final Method method;

    public void invoke(Object event) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException
    {
        method.invoke( listener, event );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy