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 java.text.MessageFormat;
20 import org.mxchange.addressbook.client.Client;
21 import org.mxchange.addressbook.menu.item.BaseMenuItem;
22 import org.mxchange.addressbook.menu.item.SelectableMenuItem;
26 * @author Roland Haeder
28 public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem {
33 private char accessKey;
41 * Constructor for building a console menu with access key and text
43 * @param accessKey Access key for this menu entry
44 * @param text Text to show to user
46 public ConsoleMenuItem (final char accessKey, final String text) {
47 this.setAccessKey(accessKey);
54 * @return the accessKey
57 public final char getAccessKey () {
58 return this.accessKey;
67 public String getText () {
72 public void show (final Client client) {
74 this.getLogger().trace(MessageFormat.format("client={0} - CALLED!", client)); //NOI18N
76 // Client must not be null
79 throw new NullPointerException("client is null");
82 // Call-back client over menu
83 client.showEntry(this);
86 this.getLogger().trace("EXIT!"); //NOI18N
92 * @param text the text to set
94 private void setText (String text) {
101 * @param accessKey the accessKey to set
103 private void setAccessKey (char accessKey) {
104 this.accessKey = accessKey;