]> git.mxchange.org Git - jcontacts-core.git/commitdiff
Minor: some documentation fixed
authorRoland Haeder <roland@mxchange.org>
Tue, 8 Mar 2016 21:23:50 +0000 (22:23 +0100)
committerRoland Haeder <roland@mxchange.org>
Tue, 8 Mar 2016 21:23:50 +0000 (22:23 +0100)
src/org/mxchange/jcontacts/contact/Contact.java
src/org/mxchange/jcontacts/contact/UserContact.java

index 806de4c9e6b0b6b77244edd5dcc2e5ed9616e51b..e928b84c46bede51e4a9e5ee6b1e3b450ce0c601 100644 (file)
@@ -26,7 +26,7 @@ import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
 import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
 
 /**
- * A general contact interface
+ * A general contact POJI
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
index bb003eebaaac0103ec22c37ca7aa1619a66fea59..64087c3fea52363514bd6c748ef38c0da04d45d3 100644 (file)
@@ -48,7 +48,7 @@ import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
 import org.mxchange.jphone.phonenumbers.landline.LandLineNumber;
 
 /**
- * A general contact class which should only be extended.
+ * A general contact class which serves as an entity.
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
  * @version 0.0
@@ -92,7 +92,7 @@ public class UserContact implements Contact, Comparable<Contact> {
        /**
         * City
         */
-       @Basic(optional = false)
+       @Basic (optional = false)
        @Column (name = "contact_city", nullable = false, length = 100)
        private String contactCity;
 
@@ -121,7 +121,7 @@ public class UserContact implements Contact, Comparable<Contact> {
        /**
         * Email address
         */
-       @Basic(optional = false)
+       @Basic (optional = false)
        @Column (name = "contact_email_address", length = 100, nullable = false)
        private String contactEmailAddress;
 
@@ -157,7 +157,7 @@ public class UserContact implements Contact, Comparable<Contact> {
        /**
         * House number
         */
-       @Basic(optional = false)
+       @Basic (optional = false)
        @Column (name = "contact_house_number", length = 5, nullable = false)
        private Short contactHouseNumber;
 
@@ -172,7 +172,7 @@ public class UserContact implements Contact, Comparable<Contact> {
        /**
         * Flag whether this contact is user's own data
         */
-       @Basic(optional = false)
+       @Basic (optional = false)
        @Column (name = "contact_own_contact", nullable = false)
        private Boolean contactOwnContact;
 
@@ -186,7 +186,7 @@ public class UserContact implements Contact, Comparable<Contact> {
        /**
         * Street
         */
-       @Basic(optional = false)
+       @Basic (optional = false)
        @Column (name = "contact_street", nullable = false)
        private String contactStreet;
 
@@ -206,7 +206,7 @@ public class UserContact implements Contact, Comparable<Contact> {
        /**
         * ZIP code
         */
-       @Basic(optional = false)
+       @Basic (optional = false)
        @Column (name = "contact_zip_code", nullable = false, length = 6)
        private Integer contactZipCode;