| Michael Hanl | 1e18cb4 | 2015-08-06 20:57:35 +0200 | [diff] [blame] | 1 | package de.ids_mannheim.korap.config; |
| 2 | |||||
| 3 | import java.lang.annotation.Retention; | ||||
| 4 | import java.lang.annotation.RetentionPolicy; | ||||
| 5 | |||||
| 6 | /** | ||||
| 7 | * @author hanl | ||||
| 8 | * @date 27/07/2015 | ||||
| 9 | */ | ||||
| 10 | @Retention(RetentionPolicy.RUNTIME) | ||||
| 11 | public @interface Configurable { | ||||
| 12 | String value(); | ||||
| 13 | } | ||||