com.bld.commons.reflection.annotations.ConditionsZones Maven / Gradle / Ivy
The newest version!
/*
* @author Francesco Baldi
* @mail [email protected]
* @class bld.commons.reflection.annotations.ConditionsZones.java
*/
package com.bld.commons.reflection.annotations;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* The Interface ConditionsZones.
*/
@Retention(RUNTIME)
@Target({FIELD,METHOD,PARAMETER})
public @interface ConditionsZones {
/**
* Value.
*
* @return the conditions zone[]
*/
public ConditionsZone[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy