]> git.mxchange.org Git - jfinancials-lib.git/blob - src/org/mxchange/addressbook/client/AddressbookClient.java
Continued rewriting:
[jfinancials-lib.git] / src / org / mxchange / addressbook / client / AddressbookClient.java
1 /*
2  * Copyright (C) 2015 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         public 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         public 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         public void displayOtherDataBox (final Contact contact);
53
54         /**
55          * Shows given contact instamce
56          *
57          * @param contact Contact instance
58          */
59         public 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         public void doChangeOwnAddressData (final Contact contact);
67
68         /**
69          * The user changes own name data
70          * <p>
71          * @param contact
72          */
73         public 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         public void doChangeOwnOtherData (final Contact contact);
81
82         /**
83          * Allows the user to enter own data
84          * <p>
85          * @return Finished Contact instance
86          */
87         public 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 menu cannot be initialized
94          */
95         public void doUserMenuChoice () throws UnhandledUserChoiceException, MenuInitializationException;
96
97         /**
98          * Asks the the user to enter a single character which must match validChars
99          * <p>
100          * @param       validChars Valid chars that are accepted
101          * @param       message Message to user
102          * @return      Allowed character
103          */
104         public char enterChar (final char[] validChars, final String message);
105
106         /**
107          * Asks the user to enter his/her gender (M=Male, F=Female, C=Company)
108          * <p>
109          * @param message Message to output
110          * @return Gender enum
111          */
112         public Gender enterGender (final String message);
113
114         /**
115          * Reads an integer (int) from the user
116          * <p>
117          * @param minimum Minimum allowed number
118          * @param maximum Maximum allowed number
119          * @param message       Message to user
120          * @return Entered string by user or null if empty string is allowed
121          */
122         public int enterInt (final int minimum, final int maximum, final String message);
123
124         /**
125          * Reads a string of minimum and maximum length from the user. An empty
126          * string should be generally not allowed, but might be okay for e.g.
127          * company name.
128          * <p>
129          * @param minLength     Minimum length of the string to read
130          * @param maxLength     Maximum length of the string to read
131          * @param message       Message to user
132          * @param allowEmpty Whether empty strings are allowed
133          * @return Entered string by user or null if empty string is allowed
134          */
135         public String enterString (final int minLength, final int maxLength, final String message, final boolean allowEmpty);
136
137         /**
138          * Setter for current menu choice
139          * <p>
140          * @param currentMenu Current menu choice
141          */
142         public void setCurrentMenu (final String currentMenu);
143
144         /**
145          * Some "Getter" for menu item
146          * <p>
147          * @param accessKey Key to press to access this menu
148          * @param text Text to show to user
149          * @return
150          */
151         public SelectableMenuItem getMenuItem (final char accessKey, final String text);
152
153         /**
154          * Shows current menu selection to the user
155          */
156         public void showCurrentMenu ();
157
158         /**
159          * Shows given menu entry in client
160          * <p>
161          * @param item Menu item to show
162          */
163         public void showEntry (final SelectableMenuItem item);
164
165         /**
166          * Let the user choose what to change on the address: [n]ame, [a]ddress,
167          * [o]ther
168          * <p>
169          * @param contact Contact instance to let the user change data
170          * @throws UnhandledUserChoiceException If choice is not supported
171          */
172         public void userChooseChangeContactData (final Contact contact) throws UnhandledUserChoiceException;
173 }