]> git.mxchange.org Git - addressbook-swing.git/blobdiff - Addressbook/src/org/mxchange/addressbook/database/storage/csv/StoreableCsv.java
Added a lot more generic methods for columnName lookup (a field must be there) +...
[addressbook-swing.git] / Addressbook / src / org / mxchange / addressbook / database / storage / csv / StoreableCsv.java
index 31df57a430f6cca350aae418000e151dfb6b64fc..faf976b47f15878450e4cf7b4f7d3376df9912e0 100644 (file)
@@ -22,13 +22,19 @@ import org.mxchange.addressbook.database.storage.Storeable;
  * An interface for classes which should be storeable as a CSV string
  *
  * @author Roland Haeder
+ * @deprecated This method was for an old way of storing data into
+ * comma-separated value files. Now that there is BASE64-encoding, this formating
+ * is no longer needed.
  */
+@Deprecated
 public interface StoreableCsv extends Storeable {
 
        /**
         * Getter for a CSV-formated string from object
         *
         * @return
+        * @deprecated See interface deprecation
         */
+       @Deprecated
        public String getCsvStringFromStoreableObject ();
 }