]> git.mxchange.org Git - addressbook-swing.git/blobdiff - Addressbook/src/org/mxchange/addressbook/database/backend/csv/CsvBackend.java
Introduced Gender enum which replaces the old char
[addressbook-swing.git] / Addressbook / src / org / mxchange / addressbook / database / backend / csv / CsvBackend.java
index 525f624ac13593f81aa21dde2212e0bfc293bde3..ada432eadb191336f7ea48c33cbd6db45ffe1262 100644 (file)
@@ -27,11 +27,12 @@ import org.mxchange.addressbook.exceptions.BadTokenException;
  */
 public interface CsvBackend extends DatabaseBackend {
 
-    /**
-     * Gets an iterator for contacts
-     * 
-     * @return Iterator for contacts
-     * @throws org.mxchange.addressbook.exceptions.BadTokenException If the CSV token is badly formulated
-     */
-    public Iterator<Contact> contactIterator () throws BadTokenException;
+       /**
+        * Gets an iterator for contacts
+        *
+        * @return Iterator for contacts
+        * @throws org.mxchange.addressbook.exceptions.BadTokenException If the CSV
+        * token is badly formulated
+        */
+       public Iterator<Contact> contactIterator () throws BadTokenException;
 }