]> git.mxchange.org Git - jaddressbook-lib.git/blobdiff - src/org/mxchange/addressbook/menu/item/SelectableMenuItem.java
updated jcore.jar + jswingcore.jar + removed BaseAddressbookSystem
[jaddressbook-lib.git] / src / org / mxchange / addressbook / menu / item / SelectableMenuItem.java
index efbce50b3aeceb4c17ad32e74c6e9aa8e43cef39..a6de00a155adddf0fc80df47c811d262fea93a60 100644 (file)
@@ -1,44 +1,47 @@
-/*\r
- * Copyright (C) 2015 Roland Haeder\r
- *\r
- * This program is free software: you can redistribute it and/or modify\r
- * it under the terms of the GNU General Public License as published by\r
- * the Free Software Foundation, either version 3 of the License, or\r
- * (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
- */\r
-package org.mxchange.addressbook.menu.item;\r
-\r
-import org.mxchange.addressbook.client.Client;\r
-\r
-/**\r
- *\r
- * @author Roland Haeder\r
- */\r
-public interface SelectableMenuItem {\r
-\r
-    /**\r
-     * Shows this menu item\r
-     * @param client Client instance\r
-     */\r
-    public void show (final Client client);\r
-\r
-    /**\r
-     * Access key\r
-     * @return the accessKey\r
-     */\r
-    public char getAccessKey();\r
-\r
-    /**\r
-     * Text to user\r
-     * @return the text\r
-     */\r
-    public String getText();\r
-}\r
+/*
+ * Copyright (C) 2015 Roland Haeder
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+package org.mxchange.addressbook.menu.item;
+
+import org.mxchange.jcore.client.Client;
+
+/**
+ *
+ * @author Roland Haeder
+ */
+public interface SelectableMenuItem {
+
+       /**
+        * Shows this menu item
+        *
+        * @param client Client instance
+        */
+       public void show (final Client client);
+
+       /**
+        * Access key
+        *
+        * @return the accessKey
+        */
+       public char getAccessKey ();
+
+       /**
+        * Text to user
+        *
+        * @return the text
+        */
+       public String getText ();
+}