Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Logger |
|
| 0.0;0 |
1 | package org.jtheque.core.managers.log; | |
2 | ||
3 | import java.lang.annotation.ElementType; | |
4 | import java.lang.annotation.Retention; | |
5 | import java.lang.annotation.RetentionPolicy; | |
6 | import java.lang.annotation.Target; | |
7 | ||
8 | /* | |
9 | * This file is part of JTheque. | |
10 | * | |
11 | * JTheque is free software: you can redistribute it and/or modify | |
12 | * it under the terms of the GNU General Public License as published by | |
13 | * the Free Software Foundation, either version 3 of the License. | |
14 | * | |
15 | * JTheque is distributed in the hope that it will be useful, | |
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 | * GNU General Public License for more details. | |
19 | * | |
20 | * You should have received a copy of the GNU General Public License | |
21 | * along with JTheque. If not, see <http://www.gnu.org/licenses/>. | |
22 | */ | |
23 | ||
24 | /** | |
25 | * An annotation to inject logged to the class. | |
26 | * | |
27 | * @author Baptiste Wicht | |
28 | */ | |
29 | @Retention(RetentionPolicy.RUNTIME) | |
30 | @Target(ElementType.FIELD) | |
31 | public @interface Logger { | |
32 | ||
33 | } |