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

org.hibernate.annotations.Target Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$Id: $
package org.hibernate.annotations;

import java.lang.annotation.Retention;
import java.lang.annotation.ElementType;
import java.lang.annotation.RetentionPolicy;

/**
 * Define an explicit target,a voiding reflection and generics resolving
 *
 * @author Emmanuel Bernard
 */
@java.lang.annotation.Target({ElementType.FIELD, ElementType.METHOD})
@Retention( RetentionPolicy.RUNTIME )
public @interface Target {
	Class value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy