router.fu.annotations.Router Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of router-fu-annotations Show documentation
Show all versions of router-fu-annotations Show documentation
Annotations for defining a router
package router.fu.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
/**
* Marks class to be processed by RouterFu annotation processor.
*/
@Documented
@Target( ElementType.TYPE )
public @interface Router
{
/**
* Return true if router should be an Arez component.
*
* @return true if router should be an Arez component.
*/
boolean arez() default false;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy