]> git.mxchange.org Git - addressbook-swing.git/blob - src/org/mxchange/addressbook/client/AddressbookClient.java
Continued:
[addressbook-swing.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.jcore.exceptions.MenuInitializationException;
20 import org.mxchange.addressbook.menu.item.SelectableMenuItem;
21 import org.mxchange.jcore.client.Client;
22 import org.mxchange.jcore.exceptions.UnhandledUserChoiceException;
23 import org.mxchange.jcore.model.contact.Contact;
24 import org.mxchange.jcore.model.contact.gender.Gender;
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          * The user changes own name data
35          * <p>
36          * @param contact
37          */
38         public void doChangeOwnNameData (final Contact contact);
39
40         /**
41          * The user changes own address data
42          * <p>
43          * @param contact Contact instance to change
44          */
45         public void doChangeOwnAddressData (final Contact contact);
46
47         /**
48          * The user changes own other data
49          * <p>
50          * @param contact Constact instance to change
51          */
52         public void doChangeOwnOtherData (final Contact contact);
53
54         /**
55          * Allows the user to enter own data
56          * <p>
57          * @return Finished Contact instance
58          */
59         public Contact doEnterOwnData ();
60
61         /**
62          * Asks the user to enter his/her gender (M=Male, F=Female, C=Company)
63          * <p>
64          * @param message Message to output
65          * @return Gender enum
66          */
67         public Gender enterGender (final String message);
68
69         /**
70          * Let the user choose what to change on the address: [n]ame, [a]ddress,
71          * [o]ther
72          * <p>
73          * @param contact Contact instance to let the user change data
74          * @throws UnhandledUserChoiceException If choice is not supported
75          */
76         public void userChooseChangeContactData (final Contact contact) throws UnhandledUserChoiceException;
77
78         /**
79          * Asks the user for a choice and proceeds accordingly
80          * <p>
81          * @throws UnhandledUserChoiceException If choice is not supported
82          * @throws org.mxchange.jcore.exceptions.MenuInitializationException If the menu cannot be initialized
83          */
84         public void doUserMenuChoice () throws UnhandledUserChoiceException, MenuInitializationException;
85
86         /**
87          * Asks the the user to enter a single character which must match validChars
88          * <p>
89          * @param       validChars Valid chars that are accepted
90          * @param       message Message to user
91          * @return      Allowed character
92          */
93         public char enterChar (final char[] validChars, final String message);
94
95         /**
96          * Reads a string of minimum and maximum length from the user. An empty
97          * string should be generally not allowed, but might be okay for e.g.
98          * company name.
99          * <p>
100          * @param minLength     Minimum length of the string to read
101          * @param maxLength     Maximum length of the string to read
102          * @param message       Message to user
103          * @param allowEmpty Whether empty strings are allowed
104          * @return Entered string by user or null if empty string is allowed
105          */
106         public String enterString (final int minLength, final int maxLength, final String message, final boolean allowEmpty);
107
108         /**
109          * Reads an integer (int) from the user
110          * <p>
111          * @param minimum Minimum allowed number
112          * @param maximum Maximum allowed number
113          * @param message       Message to user
114          * @return Entered string by user or null if empty string is allowed
115          */
116         public int enterInt (final int minimum, final int maximum, final String message);
117
118         /**
119          * Setter for current menu choice
120          * <p>
121          * @param currentMenu Current menu choice
122          */
123         public void setCurrentMenu (final String currentMenu);
124
125         /**
126          * Some "Getter" for menu item
127          * <p>
128          * @param accessKey Key to press to access this menu
129          * @param text Text to show to user
130          * @return
131          */
132         public SelectableMenuItem getMenuItem (final char accessKey, final String text);
133
134         /**
135          * Shows given menu entry in client
136          * <p>
137          * @param item Menu item to show
138          */
139         public void showEntry (final SelectableMenuItem item);
140
141         /**
142          * Shows current menu selection to the user
143          */
144         public void showCurrentMenu ();
145 }