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