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.AddressbookClient;
21 import org.mxchange.addressbook.menu.item.BaseMenuItem;
22 import org.mxchange.addressbook.menu.item.SelectableMenuItem;
23 import org.mxchange.jcore.client.Client;
27 * @author Roland Haeder
29 public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem {
34 private char accessKey;
42 * Constructor for building a console menu with access key and text
44 * @param accessKey Access key for this menu entry
45 * @param text Text to show to user
47 public ConsoleMenuItem (final char accessKey, final String text) {
48 this.setAccessKey(accessKey);
55 * @return the accessKey
58 public final char getAccessKey () {
59 return this.accessKey;
65 * @param accessKey the accessKey to set
67 private void setAccessKey (char accessKey) {
68 this.accessKey = accessKey;
77 public String getText () {
84 * @param text the text to set
86 private void setText (String text) {
91 public void show (final Client client) {
93 this.getLogger().trace(MessageFormat.format("client={0} - CALLED!", client)); //NOI18N
95 // Client must not be null
98 throw new NullPointerException("client is null");
99 } else if (!(client instanceof AddressbookClient)) {
101 throw new IllegalArgumentException("client " + client + " must implement AddressbookClient");
105 AddressbookClient c = (AddressbookClient) client;
107 // Call-back client over menu
111 this.getLogger().trace("EXIT!"); //NOI18N