2 * Copyright (C) 2015 Roland Haeder
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.
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.
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/>.
17 package org.mxchange.addressbook.menu.item.console;
19 import org.mxchange.addressbook.client.Client;
20 import org.mxchange.addressbook.menu.item.BaseMenuItem;
21 import org.mxchange.addressbook.menu.item.SelectableMenuItem;
25 * @author Roland Haeder
27 public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem {
32 private char accessKey;
40 * Constructor for building a console menu with access key and text
42 * @param accessKey Access key for this menu entry
43 * @param text Text to show to user
45 public ConsoleMenuItem (final char accessKey, final String text) {
46 this.accessKey = accessKey;
53 * @return the accessKey
56 public final char getAccessKey () {
57 return this.accessKey;
66 public String getText () {
71 public void show (final Client client) {
72 // Call-back client over menu
73 client.showEntry(this);
79 * @param text the text to set
81 private void setText (String text) {
88 * @param accessKey the accessKey to set
90 private void setAccessKey (char accessKey) {
91 this.accessKey = accessKey;