Version 2.0.0: update sources
[jvcard.git] / src / be / nikiroo / jvcard / resources / ColorOption.java
similarity index 55%
rename from src/be/nikiroo/jvcard/resources/enums/ColorOption.java
rename to src/be/nikiroo/jvcard/resources/ColorOption.java
index d8816e09ea173477e827c65f42cd751e32709a14..40b5a2bd954ec17f929732dd751ef45bddb6a72e 100644 (file)
@@ -1,62 +1,62 @@
-package be.nikiroo.jvcard.resources.enums;
+package be.nikiroo.jvcard.resources;
 
 import java.io.IOException;
 import java.io.Writer;
 
-import be.nikiroo.jvcard.resources.Meta;
-import be.nikiroo.jvcard.resources.Bundles.Bundle;
+import be.nikiroo.utils.resources.Meta;
+import be.nikiroo.utils.resources.Meta.Format;
 
 /**
  * Represent an element that can be coloured (foreground/background colours).
  * 
  * @author niki
- *
+ * 
  */
 public enum ColorOption {
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        DEFAULT, //
 
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        TITLE_MAIN, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        TITLE_VARIABLE, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        TITLE_COUNT, //
 
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        ACTION_KEY, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        ACTION_DESC, //
 
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        LINE_MESSAGE, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        LINE_MESSAGE_ERR, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        LINE_MESSAGE_QUESTION, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        LINE_MESSAGE_ANS, //
 
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        CONTACT_LINE, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        CONTACT_LINE_SEPARATOR, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        CONTACT_LINE_SELECTED, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        CONTACT_LINE_SEPARATOR_SELECTED, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        CONTACT_LINE_DIRTY, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        CONTACT_LINE_DIRTY_SELECTED, //
 
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        VIEW_CONTACT_NAME, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        VIEW_CONTACT_NORMAL, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        VIEW_CONTACT_HIGHLIGHT, //
-       @Meta(what = "", where = "", format = "colour", info = "")
+       @Meta(format = Format.COLOR)
        VIEW_CONTACT_NOTES_TITLE, //
 
        ;