]> git.mxchange.org Git - addressbook-swing.git/commitdiff
Added email address for author
authorRoland Haeder <roland@mxchange.org>
Sun, 6 Mar 2016 16:53:13 +0000 (17:53 +0100)
committerRoland Haeder <roland@mxchange.org>
Sun, 6 Mar 2016 16:53:13 +0000 (17:53 +0100)
17 files changed:
src/org/mxchange/addressbook/BaseAddressbookSystem.java
src/org/mxchange/addressbook/application/AddressbookApplication.java
src/org/mxchange/addressbook/client/AddressbookClient.java
src/org/mxchange/addressbook/client/BaseAddressbookClient.java
src/org/mxchange/addressbook/client/console/ConsoleClient.java
src/org/mxchange/addressbook/client/gui/AddressbookFrame.java
src/org/mxchange/addressbook/client/gui/SwingClient.java
src/org/mxchange/addressbook/facade/contact/AddressbookContactFacade.java
src/org/mxchange/addressbook/facade/contact/ContactFacade.java
src/org/mxchange/addressbook/menu/AddressbookMenu.java
src/org/mxchange/addressbook/menu/BaseMenu.java
src/org/mxchange/addressbook/menu/Menu.java
src/org/mxchange/addressbook/menu/MenuTools.java
src/org/mxchange/addressbook/menu/console/ConsoleMenu.java
src/org/mxchange/addressbook/menu/item/BaseMenuItem.java
src/org/mxchange/addressbook/menu/item/SelectableMenuItem.java
src/org/mxchange/addressbook/menu/item/console/ConsoleMenuItem.java

index b3872e2a16affacfd9a667f62796187ccfb9960d..0c61f6fea623f29ddf4513f024b157e21c32ec7b 100644 (file)
@@ -26,7 +26,7 @@ import org.mxchange.jcoreeelogger.beans.local.logger.LoggerBeanLocal;
 /**
  * A general addressbook class
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public abstract class BaseAddressbookSystem extends BaseFrameworkSystem {
 
index 866809a1ec8deb3ff7b1f3d49f65ce7620110aff..0ab46adda6699f77c9bf6d9d66a295d6ec66b887 100644 (file)
@@ -37,7 +37,7 @@ import org.mxchange.jcoreeelogger.beans.local.logger.LoggerBeanLocal;
 /**
  * Address book application class. Please see ROADMAP.txt for details.
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  * @version 0.0
  */
 public class AddressbookApplication extends BaseApplication implements Application {
index db27b04932d3ce27b80c4b21e8d99a70dcc663f9..b86cde91aa1d11a62679f4e4955536a59b4785d9 100644 (file)
@@ -26,7 +26,7 @@ import org.mxchange.jcore.exceptions.UnhandledUserChoiceException;
 /**
  * A special client interface for addressbook applications.
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public interface AddressbookClient extends Client {
 
index 84088912199add9fbbbca68b9898643d12c45bc3..8c01ddc2af7b4c9fd2a8a1e0ae4293140899d3e5 100644 (file)
@@ -34,7 +34,7 @@ import org.mxchange.jcoreeelogger.beans.local.logger.LoggerBeanLocal;
 /**
  * A general addressbook client
  * <p>
- * @author Roland Haeder TODO: Find better name
+ * @author Roland Haeder<roland@mxchange.org> TODO: Find better name
  */
 public abstract class BaseAddressbookClient extends BaseClient implements AddressbookClient {
 
index d53c53b168ce36b02952b3301cab4ea708d391cf..3c694b27a29b88970536fde312516308f2aaa312 100644 (file)
@@ -46,7 +46,7 @@ import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
 /**
  * A client for the console
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class ConsoleClient extends BaseAddressbookClient implements AddressbookClient {
 
index da6d4bde773d01a1c8c33e47548fe1dedc00351e..df28d95e801ee3801a74203905bbf1c23764d5f1 100644 (file)
@@ -62,7 +62,7 @@ import org.mxchange.jcoreswing.model.swing.contact.ContactTableModel;
 /**
  * A Swing frame for addressbook.
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class AddressbookFrame extends BaseAddressbookSystem implements ClientFrame {
 
index ba19b547768c0bc2c61ac2222f9782aa9ef0ec75..d9a1ae20692a9e8b98a55cd313f1e148e1b6b2cb 100644 (file)
@@ -31,7 +31,7 @@ import org.mxchange.jcoreswing.client.gui.ClientFrame;
 /**
  * A swing client
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class SwingClient extends BaseAddressbookClient implements AddressbookClient {
 
index 2432113b8666834906fcdf29d63888ad8d37c6f6..5ade6a07261f321fe638297fef5d4100e2a6ba7e 100644 (file)
@@ -42,7 +42,7 @@ import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
 /**
  * A facade for contacts.
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  * @version 0.0
  */
 public class AddressbookContactFacade extends BaseFacade implements ContactFacade {
index db3725fa38ffdfd6f02be7378a1133a5af26ee4d..3228529ad065066222b238ffac29effe4638b06b 100644 (file)
@@ -29,7 +29,7 @@ import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
 /**
  * An interface for addressbook contact manager
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public interface ContactFacade extends Facade {
 
index 7cae2eea92bef59a9ead5cfe56a2df84bb8b6a96..5f5322b054394acd23997442ff90564973e47838 100644 (file)
@@ -25,7 +25,7 @@ import org.mxchange.jcore.client.Client;
 /**
  * Utility class for menu structure
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class AddressbookMenu extends BaseMenu {
 
index e365652ab5755c51a06c46b401c2b2cf8fed2451..a6ade23f8fd22dddfa56cafb629c8ec17f9e4362 100644 (file)
@@ -28,7 +28,7 @@ import org.mxchange.jcore.client.Client;
 /**
  * A general menu class
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public abstract class BaseMenu extends BaseAddressbookSystem implements Menu {
 
index 4f37f96676b4f8d1c6ab9ec08fcc662cd4d105a3..ce5b8375ebbd0e170ff646fe36915d3958ec5105 100644 (file)
@@ -23,7 +23,7 @@ import org.mxchange.jcore.client.Client;
 /**
  * An interface for menus
  * <p>
- * @author Roland Haeder TODO find better name
+ * @author Roland Haeder<roland@mxchange.org> TODO find better name
  */
 public interface Menu {
 
index 4d0faad769ce988b2ca645beb1da48b54722259a..a8bb6109892686991b05bd5717afa4b789707d68 100644 (file)
@@ -25,7 +25,7 @@ import org.mxchange.jcore.exceptions.MenuInitializationException;
 /**
  * Menu utilities
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class MenuTools extends BaseAddressbookSystem {
 
index 9398522e9b08a6aee823ff6e75d260d21831aa71..3de7b9a93d711a81f7ae523c1798e8c19c4a77aa 100644 (file)
@@ -25,7 +25,7 @@ import org.mxchange.jcore.client.Client;
 /**
  * A menu system for the console
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class ConsoleMenu extends BaseMenu implements Menu {
 
index f6c775de621b53a75f2440b935b3ae5663b80170..9405a003692db29a10cf844ca5d0b0017d1060c6 100644 (file)
@@ -21,7 +21,7 @@ import org.mxchange.addressbook.BaseAddressbookSystem;
 /**
  * A general menu item class
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public abstract class BaseMenuItem extends BaseAddressbookSystem {
 
index 0cf0993d1c5ed2426219e0200f1539d42e1473e8..6d7b076676b612e81173afe5e349932882ca9a67 100644 (file)
@@ -22,7 +22,7 @@ import org.mxchange.jcore.client.Client;
 /**
  * A selectable menu item intereface
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public interface SelectableMenuItem extends FrameworkInterface {
 
index 7992aeb5269cc5ae7b672293f6e49ab6d76f4c00..685e6a1fdcbe4ee514c27a6042540bbe1ef55b4f 100644 (file)
@@ -25,7 +25,7 @@ import org.mxchange.jcore.client.Client;
 /**
  * A menu item class for the console
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public class ConsoleMenuItem extends BaseMenuItem implements SelectableMenuItem {