]> git.mxchange.org Git - addressbook-swing.git/blob - Addressbook/src/org/mxchange/addressbook/manager/contact/ManageableContact.java
a9285059beef55085f8c59ef18f2500515252d07
[addressbook-swing.git] / Addressbook / src / org / mxchange / addressbook / manager / contact / ManageableContact.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.manager.contact;\r
18 \r
19 import java.util.List;\r
20 import org.mxchange.addressbook.client.Client;\r
21 import org.mxchange.addressbook.contact.Contact;\r
22 import org.mxchange.addressbook.manager.Manageable;\r
23 \r
24 /**\r
25  *\r
26  * @author Roland Haeder\r
27  */\r
28 public interface ManageableContact extends Manageable {\r
29 \r
30     /**\r
31      * List all contacts\r
32      */\r
33     public void listContacts ();\r
34 \r
35     /**\r
36      * Adds given contact to address book\r
37      *\r
38      * @param contact Contact being added\r
39      * @todo Add check for book size\r
40      */\r
41     public void registerContact (final Contact contact);\r
42 \r
43     /**\r
44      * Adds given Contact instance to list\r
45      * \r
46      * @param contact Contact instance to add\r
47      */\r
48     public void addContact (final Contact contact);\r
49 \r
50     /**\r
51      * Let the user add a new other address\r
52      */\r
53     public void addOtherAddress();\r
54 \r
55     /**\r
56      * The user can change address data, like street, ZIP code, city and country\r
57      * of given Contact instance.\r
58      * \r
59      * @param contact Instance to change data\r
60      * @param client Client instance to call back\r
61      */\r
62     public void doChangeAddressData (final Contact contact, final Client client);\r
63 \r
64     /**\r
65      * The user can change name data, like gender, surname, family name and\r
66      * company name (if business contact).\r
67      * \r
68      * @param contact Instance to change data\r
69      * @param client Client instance to call back\r
70      */\r
71     public void doChangeNameData (final Contact contact, final Client client);\r
72 \r
73     /**\r
74      * Let the user change other address\r
75      */\r
76     public void changeOtherAddress();\r
77 \r
78     /**\r
79      * The user can change other data, like phone numbers or comments.\r
80      * \r
81      * @param contact Instance to change data\r
82      * @param client Client instance to call back\r
83      */\r
84     public void doChangeOtherData (final Contact contact, final Client client);\r
85 \r
86     /**\r
87      * Let the user change own data\r
88      */\r
89     public void changeOwnData();\r
90 \r
91     /**\r
92      * Let the user delete other address\r
93      */\r
94     public void deleteOtherAddress();\r
95 \r
96     /**\r
97      * Asks user for own data\r
98      */\r
99     public void doEnterOwnData();\r
100 \r
101     /**\r
102      * Getter for whole list\r
103      * @return List of all contacts\r
104      */\r
105     public List<Contact> getList ();\r
106 \r
107     /**\r
108      * Searches address book for a contact\r
109      */\r
110     public void searchContacts ();\r
111 \r
112     /**\r
113      * Getter for size\r
114      *\r
115      * @return size of contact "book"\r
116      */\r
117     public int size();\r
118 }\r