From: Roland Haeder <roland@mxchange.org>
Date: Fri, 24 Jul 2015 09:23:28 +0000 (+0200)
Subject: Fixed copyright + added documentation a bit
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c467c1bc0bae9b8624176ac0ca874dd5553ab0ce;p=jaddressbook-share-lib.git

Fixed copyright + added documentation a bit
Signed-off-by:Roland Häder <roland@mxchange.org>
---

diff --git a/Addressbook/src/org/mxchange/addressbook/database/storage/csv/StoreableCsv.java b/Addressbook/src/org/mxchange/addressbook/database/storage/csv/StoreableCsv.java
index 6a5915e..8901213 100644
--- a/Addressbook/src/org/mxchange/addressbook/database/storage/csv/StoreableCsv.java
+++ b/Addressbook/src/org/mxchange/addressbook/database/storage/csv/StoreableCsv.java
@@ -1,31 +1,32 @@
-/*
- * Copyright (C) 2015 KLC
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.addressbook.database.storage.csv;
-
-import org.mxchange.addressbook.database.storage.Storeable;
-
-/**
- *
- * @author KLC
- */
-public interface StoreableCsv extends Storeable {
-    /**
-     * Getter for a CSV-formated string from object
-     * @return 
-     */
-    public String getCsvStringFromStoreableObject ();
-}
+/*
+ * Copyright (C) 2015 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.addressbook.database.storage.csv;
+
+import org.mxchange.addressbook.database.storage.Storeable;
+
+/**
+ * An interface for classes which should be storeable as a CSV string
+ * 
+ * @author Roland Haeder
+ */
+public interface StoreableCsv extends Storeable {
+    /**
+     * Getter for a CSV-formated string from object
+     * @return 
+     */
+    public String getCsvStringFromStoreableObject ();
+}