org.javabuilders.annotations.Alias Maven / Gradle / Ivy
The newest version!
/**
*
*/
package org.javabuilders.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation used to map an instance variable to a named object from the build file
* @author Jacek Furmankiewicz
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.METHOD})
public @interface Alias {
String value();
}