001/*-------------------------------------------------------------------------+ 002| | 003| Copyright (c) 2009-2019 CQSE GmbH | 004| | 005+-------------------------------------------------------------------------*/ 006package eu.cqse.check.framework.core.ruleset; 007 008import java.lang.annotation.Documented; 009import java.lang.annotation.ElementType; 010import java.lang.annotation.Retention; 011import java.lang.annotation.RetentionPolicy; 012import java.lang.annotation.Target; 013 014/** 015 * Repeater annotation for {@link RulesetMisraC2012}. 016 */ 017@Documented 018@Retention(RetentionPolicy.RUNTIME) 019@Target(ElementType.TYPE) 020public @interface RulesetMisraC2012Repeater { 021 022 /** The annotations. */ 023 RulesetMisraC2012[] value(); 024}