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

org.fiolino.common.reflection.MethodFinder Maven / Gradle / Ivy

Go to download

General structure to easily create dynamic logic via MethodHandles and others.

There is a newer version: 1.0.10
Show newest version
package org.fiolino.common.reflection;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * Created by Michael Kuhlmann on 14.12.2015.
 */
@Retention(RUNTIME)
@Target(METHOD)
public @interface MethodFinder {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy