]> git.mxchange.org Git - jfinancials-swing.git/blob - Addressbook/src/org/mxchange/addressbook/menu/item/console/ConsoleMenuItem.java
Global commit: Changed spaces to tabs, because all Java files have tabs for indenting
[jfinancials-swing.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         /**
30          * Access key
31          */
32         private char accessKey;
33
34         /**
35          * Text to user
36          */
37         private String text;
38
39         /**
40          * Constructor for building a console menu with access key and text
41          *
42          * @param accessKey Access key for this menu entry
43          * @param text Text to show to user
44          */
45         public ConsoleMenuItem (final char accessKey, final String text) {
46                 this.accessKey = accessKey;
47                 this.text = text;
48         }
49
50         /**
51          * Access key
52          *
53          * @return the accessKey
54          */
55         @Override
56         public final char getAccessKey () {
57                 return this.accessKey;
58         }
59
60         /**
61          * Text to user
62          *
63          * @return the text
64          */
65         @Override
66         public String getText () {
67                 return this.text;
68         }
69
70         @Override
71         public void show (final Client client) {
72                 // Call-back client over menu
73                 client.showEntry(this);
74         }
75
76         /**
77          * Text to user
78          *
79          * @param text the text to set
80          */
81         private void setText (String text) {
82                 this.text = text;
83         }
84
85         /**
86          * Access key
87          *
88          * @param accessKey the accessKey to set
89          */
90         private void setAccessKey (char accessKey) {
91                 this.accessKey = accessKey;
92         }
93
94 }