]> git.mxchange.org Git - addressbook-lib.git/blob - Addressbook/src/org/mxchange/addressbook/menu/item/console/ConsoleMenuItem.java
82dd838c42348a85b8c05f9492b978ce17dc6afb
[addressbook-lib.git] / Addressbook / src / org / mxchange / addressbook / menu / item / console / ConsoleMenuItem.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.menu.item.console;
18
19 import org.mxchange.addressbook.client.Client;
20 import org.mxchange.addressbook.menu.item.BaseMenuItem;
21 import org.mxchange.addressbook.menu.item.SelectableMenuItem;
22
23 /**
24  *
25  * @author Roland Haeder
26  */
27 public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem {
28     /**
29      * Access key
30      */
31     private char accessKey;
32
33     /**
34      * Text to user
35      */
36     private String text;
37
38     /**
39      * Constructor for building a console menu with access key and text
40      * 
41      * @param accessKey Access key for this menu entry
42      * @param text Text to show to user
43      */
44     public ConsoleMenuItem (final char accessKey, final String text) {
45         this.accessKey = accessKey;
46         this.text = text;
47     }
48
49     /**
50      * Access key
51      * @return the accessKey
52      */
53     @Override
54     public final char getAccessKey () {
55         return this.accessKey;
56     }
57
58     /**
59      * Text to user
60      * @return the text
61      */
62     @Override
63     public String getText () {
64         return this.text;
65     }
66
67     @Override
68     public void show (final Client client) {
69         // Call-back client over menu
70         client.showEntry(this);
71     }
72
73     /**
74      * Text to user
75      * @param text the text to set
76      */
77     private void setText (String text) {
78         this.text = text;
79     }
80
81     /**
82      * Access key
83      * @param accessKey the accessKey to set
84      */
85     private void setAccessKey (char accessKey) {
86         this.accessKey = accessKey;
87     }
88     
89 }