blob: 221b92bc9d461aafa4e11a49d89f937aa4da7728 [file] [log] [blame]
package org.apache.myfaces.extensions.validator.test.util.model;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Target({METHOD, FIELD})
@Retention(RUNTIME)
@Documented
public @interface CustomAnnotation
{
boolean required();
}