]> git.mxchange.org Git - addressbook-swing.git/blob - src/org/mxchange/addressbook/client/AddressbookClient.java
Updated copyright year
[addressbook-swing.git] / src / org / mxchange / addressbook / client / AddressbookClient.java
1 /*
2  * Copyright (C) 2016 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.addressbook.client;
18
19 import org.mxchange.addressbook.menu.item.SelectableMenuItem;
20 import org.mxchange.jcontacts.contact.Contact;
21 import org.mxchange.jcontacts.contact.gender.Gender;
22 import org.mxchange.jcore.client.Client;
23 import org.mxchange.jcore.exceptions.MenuInitializationException;
24 import org.mxchange.jcore.exceptions.UnhandledUserChoiceException;
25
26 /**
27  * A special client interface for addressbook applications.
28  * <p>
29  * @author Roland Haeder
30  */
31 public interface AddressbookClient extends Client {
32
33         /**
34          * Displays a "box" for the address
35          * <p>
36          * @param contact Contact to show address from
37          */
38         void displayAddressBox (final Contact contact);
39
40         /**
41          * Displays a "box" for the name
42          * <p>
43          * @param contact Contact to show name from
44          */
45         void displayNameBox (final Contact contact);
46
47         /**
48          * Displays a "box" for other data
49          * <p>
50          * @param contact Contact to show other data from
51          */
52         void displayOtherDataBox (final Contact contact);
53
54         /**
55          * Shows given contact instamce
56          * <p>
57          * @param contact Contact instance
58          */
59         void show (final Contact contact);
60
61         /**
62          * The user changes own address data
63          * <p>
64          * @param contact Contact instance to change
65          */
66         void doChangeOwnAddressData (final Contact contact);
67
68         /**
69          * The user changes own name data
70          * <p>
71          * @param contact
72          */
73         void doChangeOwnNameData (final Contact contact);
74
75         /**
76          * The user changes own other data
77          * <p>
78          * @param contact Constact instance to change
79          */
80         void doChangeOwnOtherData (final Contact contact);
81
82         /**
83          * Allows the user to enter own data
84          * <p>
85          * @return Finished Contact instance
86          */
87         Contact doEnterOwnData ();
88
89         /**
90          * Asks the user for a choice and proceeds accordingly
91          * <p>
92          * @throws UnhandledUserChoiceException If choice is not supported
93          * @throws org.mxchange.jcore.exceptions.MenuInitializationException If the
94          * menu cannot be initialized
95          */
96         void doUserMenuChoice () throws UnhandledUserChoiceException, MenuInitializationException;
97
98         /**
99          * Asks the the user to enter a single character which must match validChars
100          * <p>
101          * @param       validChars Valid chars that are accepted
102          * @param       message Message to user
103          * <p>
104          * @return      Allowed character
105          */
106         char enterChar (final char[] validChars, final String message);
107
108         /**
109          * Asks the user to enter his/her gender (M=Male, F=Female, C=Company)
110          * <p>
111          * @param message Message to output
112          * <p>
113          * @return Gender enum
114          */
115         Gender enterGender (final String message);
116
117         /**
118          * Reads an integer (int) from the user
119          * <p>
120          * @param minimum Minimum allowed number
121          * @param maximum Maximum allowed number
122          * @param message       Message to user
123          * <p>
124          * @return Entered string by user or null if empty string is allowed
125          */
126         int enterInt (final int minimum, final int maximum, final String message);
127
128         /**
129          * Reads a string of minimum and maximum length from the user. An empty
130          * string should be generally not allowed, but might be okay for e.g.
131          * company name.
132          * <p>
133          * @param minLength     Minimum length of the string to read
134          * @param maxLength     Maximum length of the string to read
135          * @param message       Message to user
136          * @param allowEmpty Whether empty strings are allowed
137          * <p>
138          * @return Entered string by user or null if empty string is allowed
139          */
140         String enterString (final int minLength, final int maxLength, final String message, final boolean allowEmpty);
141
142         /**
143          * Setter for current menu choice
144          * <p>
145          * @param currentMenu Current menu choice
146          */
147         void setCurrentMenu (final String currentMenu);
148
149         /**
150          * Some "Getter" for menu item
151          * <p>
152          * @param accessKey Key to press to access this menu
153          * @param text Text to show to user
154          * <p>
155          * @return
156          */
157         SelectableMenuItem getMenuItem (final char accessKey, final String text);
158
159         /**
160          * Shows current menu selection to the user
161          */
162         void showCurrentMenu ();
163
164         /**
165          * Shows given menu entry in client
166          * <p>
167          * @param item Menu item to show
168          */
169         void showEntry (final SelectableMenuItem item);
170
171         /**
172          * Let the user choose what to change on the address: [n]ame, [a]ddress,
173          * [o]ther
174          * <p>
175          * @param contact Contact instance to let the user change data
176          * <p>
177          * @throws UnhandledUserChoiceException If choice is not supported
178          */
179         void userChooseChangeContactData (final Contact contact) throws UnhandledUserChoiceException;
180 }