]> git.mxchange.org Git - jcontacts-core.git/blobdiff - src/org/mxchange/jcontacts/contact/Contact.java
Updated copyright year
[jcontacts-core.git] / src / org / mxchange / jcontacts / contact / Contact.java
index 04112076fb14af067e871725847f37f303132f61..65abd31122a21f9cad2acaa35ace9cf866624546 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 Roland Haeder
+ * Copyright (C) 2016 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
@@ -256,6 +256,20 @@ public interface Contact extends Serializable {
         */
        void setContactStreet (final String street);
 
+       /**
+        * Getter for contact's title
+        * <p>
+        * @return Contact's title
+        */
+       String getContactTitle ();
+
+       /**
+        * Setter for contact's title
+        * <p>
+        * @param contactTitle Contact's title
+        */
+       void setContactTitle (final String contactTitle);
+
        /**
         * Getter for "updated" timestamp
         * <p>
@@ -299,8 +313,8 @@ public interface Contact extends Serializable {
         * @return Whether both contacts are same TODO Needs a lot improvements
         */
        @Override
-        boolean equals (final Object object);
+       boolean equals (final Object object);
 
        @Override
-        int hashCode ();
+       int hashCode ();
 }