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

org.hibernate.annotations.common.reflection.AnnotationReader Maven / Gradle / Ivy

package org.hibernate.annotations.common.reflection;

import java.lang.annotation.Annotation;

/**
 * @author Paolo Perrotta
 */
public interface AnnotationReader {

    public  T getAnnotation(Class annotationType);

    public  boolean isAnnotationPresent(Class annotationType);

    public Annotation[] getAnnotations();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy