21 lines
554 B
Java
21 lines
554 B
Java
package org.atriasoft.aknot.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* Marker annotation that set the element not found are ignored.
|
|
*
|
|
*/
|
|
@Target(ElementType.TYPE)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@AknotAnnotation
|
|
public @interface AknotDefaultOptional {
|
|
/**
|
|
* Set this at true to set all the element optional.
|
|
* @return true if the element are by default optional.
|
|
*/
|
|
boolean value() default false;
|
|
} |