update docs
[yosql.git] / yosql-codegen / src / main / java / wtf / metio / yosql / codegen / logging / NoOp.java
blob2bb5f5c2b98e8839eeae5ce1e07fd4cda7fe9983
1 /*
2 * This file is part of yosql. It is subject to the license terms in the LICENSE file found in the top-level
3 * directory of this distribution and at https://creativecommons.org/publicdomain/zero/1.0/. No part of yosql,
4 * including this file, may be copied, modified, propagated, or distributed except according to the terms contained
5 * in the LICENSE file.
6 */
7 package wtf.metio.yosql.codegen.logging;
9 import javax.inject.Qualifier;
10 import java.lang.annotation.Documented;
11 import java.lang.annotation.Retention;
12 import java.lang.annotation.RetentionPolicy;
13 import java.lang.annotation.Target;
15 import static java.lang.annotation.ElementType.*;
17 /**
18 * Marks a type as related to a no-op implementation.
20 @Qualifier
21 @Documented
22 @Retention(RetentionPolicy.RUNTIME)
23 @Target({ TYPE, PARAMETER, METHOD })
24 public @interface NoOp {
26 // marker annotation