]> git.mxchange.org Git - jfinancials-swing.git/commitdiff
Updated jcore and fixed imports
authorRoland Haeder <roland@mxchange.org>
Fri, 4 Sep 2015 12:49:30 +0000 (14:49 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 4 Sep 2015 12:49:30 +0000 (14:49 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore.jar
src/org/mxchange/addressbook/client/AddressbookClient.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/contact/user/UserContact.java
src/org/mxchange/addressbook/manager/contact/AddressbookContactManager.java
src/org/mxchange/addressbook/manager/contact/ManageableAddressbookContact.java

index 01a404f97a84fd8344e0f5c4435b19dea669b71c..a12ac5b19d5bcc7db279d9eb1a63371754fe22ac 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index dde3c17332c03cc17eb924a1e1dd8a66fbc6712e..79fd0a2481c55f2ff6354dcd7e2a2c83d57304ad 100644 (file)
@@ -19,7 +19,7 @@ package org.mxchange.addressbook.client;
 import org.mxchange.addressbook.menu.item.SelectableMenuItem;
 import org.mxchange.jcore.client.Client;
 import org.mxchange.jcore.contact.Contact;
-import org.mxchange.jcore.contact.Gender;
+import org.mxchange.jcore.contact.gender.Gender;
 import org.mxchange.jcore.exceptions.UnhandledUserChoiceException;
 
 /**
index 0fbb66bbc85f9f5cd8b825fa4ecdf088d0a97dcf..dd7eee810cd87df5556f12666d8791dd0fb293eb 100644 (file)
@@ -35,7 +35,7 @@ import org.mxchange.addressbook.menu.item.SelectableMenuItem;
 import org.mxchange.addressbook.menu.item.console.ConsoleMenuItem;
 import org.mxchange.jcore.application.Application;
 import org.mxchange.jcore.contact.Contact;
-import org.mxchange.jcore.contact.Gender;
+import org.mxchange.jcore.contact.gender.Gender;
 import org.mxchange.jcore.exceptions.BadTokenException;
 import org.mxchange.jcore.exceptions.CorruptedDatabaseFileException;
 import org.mxchange.jcore.exceptions.UnhandledUserChoiceException;
index 5cb115cceed47ff894db35e1fd2db4cd4d05afbd..8df0da35d37a9e39fcad164622fca865c7a9723a 100644 (file)
@@ -53,7 +53,7 @@ import org.mxchange.addressbook.exceptions.ContactAlreadyAddedException;
 import org.mxchange.addressbook.manager.contact.ManageableAddressbookContact;
 import org.mxchange.jcore.client.Client;
 import org.mxchange.jcore.contact.Contact;
-import org.mxchange.jcore.contact.Gender;
+import org.mxchange.jcore.contact.gender.Gender;
 import org.mxchange.jcore.exceptions.BadTokenException;
 import org.mxchange.jcore.exceptions.CorruptedDatabaseFileException;
 import org.mxchange.jcore.exceptions.FrameAlreadyInitializedException;
index b7f8d04dd8905cf284794b52c105fa7120c7643f..09765d1dbc5fd75dec37e50b11b36a9aaf8dee84 100644 (file)
@@ -24,7 +24,7 @@ import org.mxchange.addressbook.menu.Menu;
 import org.mxchange.addressbook.menu.item.SelectableMenuItem;
 import org.mxchange.jcore.application.Application;
 import org.mxchange.jcore.contact.Contact;
-import org.mxchange.jcore.contact.Gender;
+import org.mxchange.jcore.contact.gender.Gender;
 import org.mxchange.jcore.exceptions.BadTokenException;
 import org.mxchange.jcore.exceptions.FrameAlreadyInitializedException;
 import org.mxchange.jcore.exceptions.UnhandledUserChoiceException;
index eede361bee7f2bbd0f84fa7859d99acb6474853d..652ea114d686cade5497077cada839ae8374a9f4 100644 (file)
@@ -19,7 +19,7 @@ package org.mxchange.addressbook.contact.user;
 import java.text.MessageFormat;
 import org.mxchange.addressbook.contact.book.BookContact;
 import org.mxchange.jcore.contact.Contact;
-import org.mxchange.jcore.contact.Gender;
+import org.mxchange.jcore.contact.gender.Gender;
 
 /**
  *
index d7be29e3db5deddb23402927cc934fd675a91ea8..554a42db6d1563ff5bab63410f75e2a3fe51d7aa 100644 (file)
@@ -30,7 +30,7 @@ import org.mxchange.addressbook.database.frontend.contact.AddressbookContactFron
 import org.mxchange.addressbook.exceptions.ContactAlreadyAddedException;
 import org.mxchange.jcore.client.Client;
 import org.mxchange.jcore.contact.Contact;
-import org.mxchange.jcore.contact.Gender;
+import org.mxchange.jcore.contact.gender.Gender;
 import org.mxchange.jcore.database.frontend.DatabaseFrontend;
 import org.mxchange.jcore.database.storage.Storable;
 import org.mxchange.jcore.exceptions.BadTokenException;
index ee12842f4e6338c91bc2e7055a6a98175b38609a..9e12e7570da1b6c5021b3dc66453f0348de98f02 100644 (file)
@@ -21,7 +21,7 @@ import java.lang.reflect.InvocationTargetException;
 import java.sql.SQLException;
 import org.mxchange.addressbook.exceptions.ContactAlreadyAddedException;
 import org.mxchange.jcore.contact.Contact;
-import org.mxchange.jcore.contact.Gender;
+import org.mxchange.jcore.contact.gender.Gender;
 import org.mxchange.jcore.exceptions.BadTokenException;
 import org.mxchange.jcore.exceptions.CorruptedDatabaseFileException;
 import org.mxchange.jcore.manager.database.ManageableDatabase;