Annotation Type Hidden


  • @Documented
    @Retention(RUNTIME)
    @Target({METHOD,PARAMETER})
    public @interface Hidden
    Annotates elements that should be hidden in reports.

    This is useful for technical helper methods or arguments that have no meaning for domain expert, but are needed for some technical reasons.

    You should write technical helper methods in camelCase so that the name already indicates that the method does not appear in the report.

    See Also:
    DoNotIntercept