X-Git-Url: http://git.nikiroo.be/?p=jvcard.git;a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Fjvcard%2Fresources%2FDisplayOption.java;fp=src%2Fbe%2Fnikiroo%2Fjvcard%2Fresources%2Fenums%2FDisplayOption.java;h=a5dc5edebaaf0b41d0b0c704a3e092a92b31a455;hp=24efa452810b9468e7194009f6031a73b5c8f019;hb=f06c81000632cfb5f525ca458f719338f55f9f66;hpb=a73a906356c971b080c36368e71a15d87e8b8d31 diff --git a/src/be/nikiroo/jvcard/resources/enums/DisplayOption.java b/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 24efa45..a5dc5ed 100644 --- a/src/be/nikiroo/jvcard/resources/enums/DisplayOption.java +++ b/src/be/nikiroo/jvcard/resources/DisplayOption.java @@ -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, // ;