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

xapi.ui.autoui.api.DoNotIndex Maven / Gradle / Ivy

There is a newer version: 0.5
Show newest version
package xapi.ui.autoui.api;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * A marker annotation used to tell reflection processors not to index the annotated element.
 * 
* This is used by autoui to exclude methods from bean processing, either because the * given element is not supposed to be accessible, or to prevent recursion sickness. * * @author "James X. Nelson ([email protected])" * */ @Documented @Retention(RetentionPolicy.RUNTIME) public @interface DoNotIndex { int unlessDepthLessThan() default 0; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy