]> git.mxchange.org Git - jfinancials-swing.git/commitdiff
Continued:
authorRoland Haeder <roland@mxchange.org>
Fri, 2 Oct 2015 10:01:43 +0000 (12:01 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 2 Oct 2015 10:01:43 +0000 (12:01 +0200)
- added jcontacts-business-core.jar (model/POJO/POJI for business contacts)
- updated jcontacts-core
- fixed imports
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcontacts-business-core.jar [new file with mode: 0644]
lib/jcontacts-core.jar
nbproject/project.properties
src/org/mxchange/addressbook/client/console/ConsoleClient.java
src/org/mxchange/addressbook/client/gui/AddressbookFrame.java

diff --git a/lib/jcontacts-business-core.jar b/lib/jcontacts-business-core.jar
new file mode 100644 (file)
index 0000000..8be05cc
Binary files /dev/null and b/lib/jcontacts-business-core.jar differ
index 2248057388fbe510565b411e67b98b6b9bc87b77..9affc5432a218b0e32e995f7498d8260a45e8cb7 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index e6be5a962d62146680c5e29f22d6490724b61138..f583da6e580863189abf755b6ee160c7169ec610 100644 (file)
@@ -30,6 +30,7 @@ dist.jar=${dist.dir}/addressbook-swing.jar
 dist.javadoc.dir=${dist.dir}/javadoc
 endorsed.classpath=
 excludes=
+file.reference.jcontacts-business-core.jar=lib\\jcontacts-business-core.jar
 file.reference.jcontacts-core.jar=lib/jcontacts-core.jar
 file.reference.jcore-logger-lib.jar=lib/jcore-logger-lib.jar
 file.reference.jcore-swing.jar=lib/jcore-swing.jar
@@ -43,6 +44,7 @@ javac.classpath=\
     ${file.reference.jcore-swing.jar}:\
     ${file.reference.jcore-logger-lib.jar}:\
     ${file.reference.jcontacts-core.jar}:\
+    ${file.reference.jcontacts-business-core.jar}:\
     ${reference.addressbook-lib.jar}:\
     ${libs.jpa20-persistence.classpath}
 # Space-separated list of extra javac options
@@ -100,6 +102,7 @@ run.test.classpath=\
     ${javac.test.classpath}:\
     ${build.test.classes.dir}
 source.encoding=UTF-8
+source.reference.jcontacts-business-core.jar=../jcontacts-business-core/src/
 source.reference.jcontacts-core.jar=../jcontacts-core/src/
 source.reference.jcore-logger-lib.jar=../jcore-logger-lib/src/
 source.reference.jcore-swing.jar=../jcore-swing/src
index 097a9e5dbfe864ed122fe4c930bbd83b965408d6..2824cd8b09a0ac0ca19857bbf1f2692bcdb51d57 100644 (file)
@@ -25,7 +25,6 @@ import java.util.Scanner;
 import org.mxchange.addressbook.application.AddressbookApplication;
 import org.mxchange.addressbook.client.AddressbookClient;
 import org.mxchange.addressbook.client.BaseAddressbookClient;
-import org.mxchange.addressbook.exceptions.ContactAlreadyAddedException;
 import org.mxchange.addressbook.facade.contact.ContactFacade;
 import org.mxchange.addressbook.menu.Menu;
 import org.mxchange.addressbook.menu.MenuTools;
@@ -36,6 +35,7 @@ import org.mxchange.jcontacts.contact.Contact;
 import org.mxchange.jcontacts.contact.UserContact;
 import org.mxchange.jcontacts.contact.gender.Gender;
 import org.mxchange.jcontacts.contact.gender.GenderUtils;
+import org.mxchange.jcontacts.exceptions.ContactAlreadyAddedException;
 import org.mxchange.jcore.application.Application;
 import org.mxchange.jcore.exceptions.MenuInitializationException;
 import org.mxchange.jcore.exceptions.UnhandledUserChoiceException;
index beea931c030398f79df588f16acdb3bb0faa7ba1..173f66455851b480c62859d24a3c9466e60bbbe5 100644 (file)
@@ -49,10 +49,10 @@ import javax.swing.border.TitledBorder;
 import javax.swing.table.TableModel;
 import org.mxchange.addressbook.BaseAddressbookSystem;
 import org.mxchange.addressbook.application.AddressbookApplication;
-import org.mxchange.addressbook.exceptions.ContactAlreadyAddedException;
 import org.mxchange.addressbook.facade.contact.ContactFacade;
 import org.mxchange.jcontacts.contact.Contact;
 import org.mxchange.jcontacts.contact.gender.Gender;
+import org.mxchange.jcontacts.exceptions.ContactAlreadyAddedException;
 import org.mxchange.jcore.application.Application;
 import org.mxchange.jcore.client.Client;
 import org.mxchange.jcore.exceptions.FrameAlreadyInitializedException;