package com.mastfrog.acteur.preconditions; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Provide a description for a page or acteur which will be used by * Application.getHelpPageType() to provide an API-level help call. * * @author Tim Boudreau */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface Description { String value(); }