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

io.higgs.events.EventMethodProcessor Maven / Gradle / Ivy

There is a newer version: 0.0.24
Show newest version
package io.higgs.events;

import io.higgs.core.MethodProcessor;
import io.higgs.core.ObjectFactory;

import java.lang.reflect.Method;
import java.util.Queue;

/**
 * @author Courtney Robinson 
 */
public class EventMethodProcessor implements MethodProcessor {
    @Override
    public EventMethod process(Method method, Class klass, Queue factories) {
        return newMethod(method, klass, factories);
    }

    @Override
    public EventMethod newMethod(Method method, Class klass, Queue factories) {
        return new EventMethod(factories, klass, method);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy