![JAR search and dependency download from the Maven repository](/logo.png)
org.hibernate.annotations.common.reflection.ReflectionManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-commons-annotations Show documentation
Show all versions of hibernate-commons-annotations Show documentation
EJB3-style annotations for Hibernate - common code
The newest version!
package org.hibernate.annotations.common.reflection;
import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.Method;
import java.util.Map;
/**
* The entry point to the reflection layer (a.k.a. the X* layer).
*
* @author Paolo Perrotta
* @author Davide Marchignoli
*/
public interface ReflectionManager {
public XClass toXClass(Class clazz);
public Class toClass(XClass xClazz);
public Method toMethod(XMethod method);
public XClass classForName(String name, Class caller) throws ClassNotFoundException;
public XPackage packageForName(String packageName) throws ClassNotFoundException;
public boolean equals(XClass class1, Class class2);
public AnnotationReader buildAnnotationReader(AnnotatedElement annotatedElement);
public Map getDefaults();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy