com.bld.commons.reflection.annotations.ConditionsZone Maven / Gradle / Ivy
The newest version!
/*
* @author Francesco Baldi
* @mail [email protected]
* @class bld.commons.reflection.annotations.ConditionsZone.java
*/
package com.bld.commons.reflection.annotations;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* The Interface ConditionsZone.
*/
@Retention(RUNTIME)
@Target({ElementType.ANNOTATION_TYPE})
public @interface ConditionsZone {
/**
* Key.
*
* @return the string
*/
public String key();
/**
* Inits the where.
*
* @return true, if successful
*/
public boolean initWhere() default true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy