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

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy