| 1 | package be.nikiroo.fanfix.bundles; |
| 2 | |
| 3 | import be.nikiroo.utils.resources.Bundle; |
| 4 | |
| 5 | /** |
| 6 | * The type of configuration information the associated {@link Bundle} will |
| 7 | * convey. |
| 8 | * |
| 9 | * @author niki |
| 10 | */ |
| 11 | public enum Target { |
| 12 | /** |
| 13 | * Configuration options that the user can change in the |
| 14 | * <tt>.properties</tt> file |
| 15 | */ |
| 16 | config, |
| 17 | /** Translation resources */ |
| 18 | resources, |
| 19 | /** UI resources (from colours to behaviour) */ |
| 20 | ui, |
| 21 | /** Description of UI resources. */ |
| 22 | ui_description, |
| 23 | } |