X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2Forg%2Fmxchange%2Faddressbook%2Fmenu%2Fitem%2Fconsole%2FConsoleMenuItem.java;h=fd008a9bb0c1864fc595fa1a41bf66db3ce05159;hb=16624bae7209070f842d14159924d85a320c362d;hp=091787d90735715bd11b8bfbc71f25833c6cb933;hpb=3345026dfa6b1915ab532c5e3883d185efa96b59;p=jaddressbook-lib.git diff --git a/src/org/mxchange/addressbook/menu/item/console/ConsoleMenuItem.java b/src/org/mxchange/addressbook/menu/item/console/ConsoleMenuItem.java index 091787d9..fd008a9b 100644 --- a/src/org/mxchange/addressbook/menu/item/console/ConsoleMenuItem.java +++ b/src/org/mxchange/addressbook/menu/item/console/ConsoleMenuItem.java @@ -40,7 +40,7 @@ public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem /** * Constructor for building a console menu with access key and text - * + *

* @param accessKey Access key for this menu entry * @param text Text to show to user */ @@ -51,7 +51,7 @@ public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem /** * Access key - * + *

* @return the accessKey */ @Override @@ -61,7 +61,7 @@ public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem /** * Access key - * + *

* @param accessKey the accessKey to set */ private void setAccessKey (char accessKey) { @@ -70,7 +70,7 @@ public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem /** * Text to user - * + *

* @return the text */ @Override @@ -80,7 +80,7 @@ public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem /** * Text to user - * + *

* @param text the text to set */ private void setText (String text) { @@ -90,7 +90,7 @@ public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem @Override public void show (final Client client) { // Trace message - this.getLogger().trace(MessageFormat.format("client={0} - CALLED!", client)); //NOI18N + this.getLogger().logTrace(MessageFormat.format("client={0} - CALLED!", client)); //NOI18N // Client must not be null if (null == client) { @@ -108,7 +108,7 @@ public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem c.showEntry(this); // Trace message - this.getLogger().trace("EXIT!"); //NOI18N + this.getLogger().logTrace("EXIT!"); //NOI18N } }