Move default tmp dirs, fix BLANK handling
[fanfix.git] / src / be / nikiroo / fanfix / bundles / Target.java
CommitLineData
08fe2e33
NR
1package be.nikiroo.fanfix.bundles;
2
948637bc 3import be.nikiroo.utils.resources.Bundle;
08fe2e33
NR
4
5/**
6 * The type of configuration information the associated {@link Bundle} will
7 * convey.
8 *
9 * @author niki
10 */
11public enum Target {
12 /**
13 * Configuration options that the user can change in the
b4dc6ab5 14 * <tt>.properties</tt> file
08fe2e33
NR
15 */
16 config,
b4dc6ab5 17 /** Translation resources */
08fe2e33 18 resources,
b4dc6ab5
NR
19 /** UI resources (from colours to behaviour) */
20 ui,
08fe2e33 21}