Version 2.0.0: update sources
[jvcard.git] / src / be / nikiroo / jvcard / resources / DisplayOption.java
similarity index 79%
rename from src/be/nikiroo/jvcard/resources/enums/DisplayOption.java
rename to src/be/nikiroo/jvcard/resources/DisplayOption.java
index 24efa452810b9468e7194009f6031a73b5c8f019..a5dc5edebaaf0b41d0b0c704a3e092a92b31a455 100644 (file)
@@ -1,21 +1,21 @@
-package be.nikiroo.jvcard.resources.enums;
+package be.nikiroo.jvcard.resources;
 
 import java.io.IOException;
 import java.io.Writer;
 
-import be.nikiroo.jvcard.resources.Bundles.Bundle;
-import be.nikiroo.jvcard.resources.Meta;
+import be.nikiroo.utils.resources.Meta;
+
 
 public enum DisplayOption {
-       @Meta(what = "", where = "", format = "coma-separated list of CLF", info = "The format of each line in the contact list")
+       @Meta(  info = "comma-separated list of CLF", description = "The format of each line in the contact list")
        CONTACT_LIST_FORMAT, //
-       @Meta(what = "", where = "", format = "CDIF", info = "The list of details to show in View Contact mode")
+       @Meta(  info = "CDIF", description = "The list of details to show in View Contact mode")
        CONTACT_DETAILS_INFO, //
-       @Meta(what = "", where = "", format = "Integer or nothing for auto", info = "The size of the details' labels")
+       @Meta(  info = "Integer or nothing for auto", description = "The size of the details' labels")
        CONTACT_DETAILS_LABEL_WIDTH, //
-       @Meta(what = "", where = "", format = "CLF", info = "The default value of FN if it is not present")
+       @Meta(  info = "CLF", description = "The default value of FN if it is not present")
        CONTACT_DETAILS_DEFAULT_FN, //
-       @Meta(what = "", where = "", format = "TRUE or FALSE", info = "TRUE to force all FNs to be recreated from CONTACT_DETAILS_DEFAULT_FN")
+       @Meta(info = "TRUE or FALSE", description = "TRUE to force all FNs to be recreated from CONTACT_DETAILS_DEFAULT_FN")
        CONTACT_DETAILS_SHOW_COMPUTED_FN, //
 
        ;