]> git.mxchange.org Git - addressbook-swing.git/blobdiff - src/org/mxchange/addressbook/client/AddressbookClient.java
Continued:
[addressbook-swing.git] / src / org / mxchange / addressbook / client / AddressbookClient.java
index 6498c4c3493e821496339648a80a380af1a12382..c2c2b6b2d20306ef5458f3ff290c871f1cc64e17 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 - 2020 Free Software Foundation
+ * Copyright (C) 2016 - 2022 Free Software Foundation
  *
  * 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
@@ -17,8 +17,8 @@
 package org.mxchange.addressbook.client;
 
 import org.mxchange.addressbook.menu.item.SelectableMenuItem;
-import org.mxchange.jcontacts.contact.Contact;
-import org.mxchange.jcontacts.contact.title.PersonalTitle;
+import org.mxchange.jcontacts.model.contact.Contact;
+import org.mxchange.jcontacts.model.contact.title.PersonalTitle;
 import org.mxchange.jcore.client.Client;
 import org.mxchange.jcore.exceptions.MenuInitializationException;
 import org.mxchange.jcore.exceptions.UnhandledUserChoiceException;
@@ -99,14 +99,15 @@ public interface AddressbookClient extends Client {
         * Asks the the user to enter a single character which must match validChars
         * <p>
         * @param       validChars Valid chars that are accepted
-        * @param       message Message to user
+        * @param       message    Message to user
         * <p>
         * @return      Allowed character
         */
        char enterChar (final char[] validChars, final String message);
 
        /**
-        * Asks the user to enter his/her personal title (M=Male, F=Female, C=Company)
+        * Asks the user to enter his/her personal title (M=Male, F=Female,
+        * C=Company)
         * <p>
         * @param message Message to output
         * <p>
@@ -130,9 +131,9 @@ public interface AddressbookClient extends Client {
         * string should be generally not allowed, but might be okay for e.g.
         * company name.
         * <p>
-        * @param minLength     Minimum length of the string to read
-        * @param maxLength     Maximum length of the string to read
-        * @param message       Message to user
+        * @param minLength      Minimum length of the string to read
+        * @param maxLength      Maximum length of the string to read
+        * @param message          Message to user
         * @param allowEmpty Whether empty strings are allowed
         * <p>
         * @return Entered string by user or null if empty string is allowed
@@ -150,7 +151,7 @@ public interface AddressbookClient extends Client {
         * Some "Getter" for menu item
         * <p>
         * @param accessKey Key to press to access this menu
-        * @param text Text to show to user
+        * @param text      Text to show to user
         * <p>
         * @return
         */