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
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
.*;
18 * Marks a type as related to the java.util.logging.
22 @Retention(RetentionPolicy
.RUNTIME
)
23 @Target({ TYPE
, PARAMETER
, METHOD
})
24 public @interface JUL
{