X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2Forg%2Fmxchange%2Faddressbook%2Fclient%2FAddressbookClient.java;h=c2c2b6b2d20306ef5458f3ff290c871f1cc64e17;hb=23b4c17cd3e407ea28c8c5269e44b00aca4bf680;hp=6498c4c3493e821496339648a80a380af1a12382;hpb=3392096bf226c8fa8a21ec5a0ec12eda57110d54;p=addressbook-swing.git diff --git a/src/org/mxchange/addressbook/client/AddressbookClient.java b/src/org/mxchange/addressbook/client/AddressbookClient.java index 6498c4c..c2c2b6b 100644 --- a/src/org/mxchange/addressbook/client/AddressbookClient.java +++ b/src/org/mxchange/addressbook/client/AddressbookClient.java @@ -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 *

* @param validChars Valid chars that are accepted - * @param message Message to user + * @param message Message to user *

* @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) *

* @param message Message to output *

@@ -130,9 +131,9 @@ public interface AddressbookClient extends Client { * string should be generally not allowed, but might be okay for e.g. * company name. *

- * @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 *

* @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 *

* @param accessKey Key to press to access this menu - * @param text Text to show to user + * @param text Text to show to user *

* @return */