]> git.mxchange.org Git - jbonuscard-lib.git/blob - Addressbook/src/org/mxchange/addressbook/client/Client.java
2c4336c5b9f8509732f3c90188cd1c4fbfde931f
[jbonuscard-lib.git] / Addressbook / src / org / mxchange / addressbook / client / Client.java
1 /*\r
2  * Copyright (C) 2015 Roland Haeder\r
3  *\r
4  * This program is free software: you can redistribute it and/or modify\r
5  * it under the terms of the GNU General Public License as published by\r
6  * the Free Software Foundation, either version 3 of the License, or\r
7  * (at your option) any later version.\r
8  *\r
9  * This program is distributed in the hope that it will be useful,\r
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
12  * GNU General Public License for more details.\r
13  *\r
14  * You should have received a copy of the GNU General Public License\r
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
16  */\r
17 package org.mxchange.addressbook.client;\r
18 \r
19 import org.mxchange.addressbook.UnhandledUserChoiceException;\r
20 import org.mxchange.addressbook.FrameworkInterface;\r
21 import org.mxchange.addressbook.contact.Contact;\r
22 import org.mxchange.addressbook.menu.item.SelectableMenuItem;\r
23 \r
24 /**\r
25  *\r
26  * @author Roland Haeder\r
27  */\r
28 public interface Client extends FrameworkInterface {\r
29 \r
30     /**\r
31      * Displays a "box" for the address\r
32      *\r
33      * @param contact Contact to show address from\r
34      */\r
35     public void displayAddressBox (final Contact contact);\r
36 \r
37     /**\r
38      * Displays a message to the user\r
39      *\r
40      * @param message Message to show to the user\r
41      */\r
42     public void displayMessage (final String message);\r
43 \r
44     /**\r
45      * Displays a "box" for the name\r
46      *\r
47      * @param contact Contact to show name from\r
48      */\r
49     public void displayNameBox (final Contact contact);\r
50 \r
51     /**\r
52      * Displays a "box" for other data\r
53      *\r
54      * @param contact Contact to show other data from\r
55      */\r
56     public void displayOtherDataBox (final Contact contact);\r
57 \r
58     /**\r
59      * Let the user choose what to change on the address: [n]ame, [a]ddress,\r
60      * [o]ther\r
61      * @param contact Contact instance to let the user change data\r
62      * @throws UnhandledUserChoiceException If choice is not supported\r
63      */\r
64     public void doUserChangeAdressChoice (final Contact contact) throws UnhandledUserChoiceException;\r
65 \r
66     /**\r
67      * Asks the user for a choice and proceeds accordingly\r
68      * @throws UnhandledUserChoiceException If choice is not supported\r
69      */\r
70     public void doUserMenuChoice () throws UnhandledUserChoiceException ;\r
71 \r
72     /**\r
73      * Enables isRunning attribute which singals that the client is running\r
74      */\r
75     public void enableIsRunning ();\r
76 \r
77     /**\r
78      * Asks the the user to enter a single character which must match validChars\r
79      * @param   validChars  Valid chars that are accepted\r
80      * @param   message     Message to user\r
81      * @return  Allowed character\r
82      */\r
83     public char enterChar (final char[] validChars, final String message);\r
84 \r
85     /**\r
86      * Reads a string of minimum and maximum length from the user\r
87      * @param minLength Minimum length of the string to read\r
88      * @param maxLength Maximum length of the string to read\r
89      * @param message   Message to user\r
90      * @return \r
91      */\r
92     public String enterString (final int minLength, final int maxLength, final String message);\r
93 \r
94     /**\r
95      * Setter for current menu choice\r
96      * @param currentMenu Current menu choice\r
97      */\r
98     public void setCurrentMenu (final String currentMenu);\r
99 \r
100     /**\r
101      * Some "Getter" for menu item\r
102      * @param accessKey Key to press to access this menu\r
103      * @param text Text to show to user\r
104      * @return \r
105      */\r
106     public SelectableMenuItem getMenuItem (final char accessKey, final String text);\r
107 \r
108     /**\r
109      * Determines whether the application is still active by checking some\r
110      * conditions\r
111      * \r
112      * @return Whether the application is still active\r
113      */\r
114     public boolean isApplicationRunning ();\r
115 \r
116     /**\r
117      * Shows given menu entry in client\r
118      * @param item Menu item to show\r
119      */\r
120     public void showEntry (final SelectableMenuItem item);\r
121 \r
122     /**\r
123      * Shows introduction to user\r
124      */\r
125     public void showWelcome ();\r
126 \r
127     /**\r
128      * Shows current menu selection to the user\r
129      */\r
130     public void showCurrentMenu ();\r
131 }\r