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

org.fiolino.common.reflection.AttributeDescription 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.invoke.MethodHandle;

/**
 * Created by Kuli on 6/17/2016.
 */
public interface AttributeDescription extends AnnotationProvider {

    String name();

    Class type();

    MethodHandle createGetter();

    MethodHandle createSetter();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy