From: Roland Haeder Date: Wed, 2 Sep 2015 12:49:37 +0000 (+0200) Subject: jswingcore has been created based on jcore's last Swing-related classes and interfaces X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1e17ba68aead440d98580eba67ab8ebdfbbfb1c6;p=jfinancials-lib.git jswingcore has been created based on jcore's last Swing-related classes and interfaces Signed-off-by:Roland Häder --- diff --git a/lib/jcore.jar b/lib/jcore.jar index 7ccb908..5ed709d 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jswingcore.jar b/lib/jswingcore.jar new file mode 100644 index 0000000..6f46f86 Binary files /dev/null and b/lib/jswingcore.jar differ diff --git a/nbproject/project.properties b/nbproject/project.properties index 27d9c6b..d625d64 100644 --- a/nbproject/project.properties +++ b/nbproject/project.properties @@ -32,6 +32,7 @@ endorsed.classpath= excludes= file.reference.commons-codec-1.10.jar=lib/commons-codec-1.10.jar file.reference.commons-lang3-3.4.jar=lib/commons-lang3-3.4.jar +file.reference.jswingcore.jar=lib\\jswingcore.jar file.reference.log4j-api-2.3.jar=lib/log4j-api-2.3.jar file.reference.log4j-core-2.3.jar=lib/log4j-core-2.3.jar file.reference.jcore.jar=./lib/jcore.jar @@ -44,7 +45,8 @@ javac.classpath=\ ${file.reference.log4j-core-2.3.jar}:\ ${file.reference.jcore.jar}:\ ${file.reference.commons-codec-1.10.jar}:\ - ${file.reference.commons-lang3-3.4.jar} + ${file.reference.commons-lang3-3.4.jar}:\ + ${file.reference.jswingcore.jar} # Space-separated list of extra javac options javac.compilerargs=-Xlint:deprecation -Xlint:unchecked javac.deprecation=true @@ -99,6 +101,7 @@ run.test.classpath=\ ${build.test.classes.dir} source.encoding=UTF-8 source.reference.jcore.jar=../jcore/src/ +source.reference.jswingcore.jar=../jswingcore/src/ source.reference.log4j-api-2.3.jar=/home/quix0r/MyProjects/JARs/log4j-api-2.3-sources.jar source.reference.log4j-core-2.3.jar=/home/quix0r/MyProjects/JARs/log4j-core-2.3-sources.jar src.dir=src diff --git a/src/org/mxchange/addressbook/client/gui/AddressbookFrame.java b/src/org/mxchange/addressbook/client/gui/AddressbookFrame.java index c1f9874..5cb115c 100644 --- a/src/org/mxchange/addressbook/client/gui/AddressbookFrame.java +++ b/src/org/mxchange/addressbook/client/gui/AddressbookFrame.java @@ -52,13 +52,13 @@ import org.mxchange.addressbook.application.AddressbookApplication; import org.mxchange.addressbook.exceptions.ContactAlreadyAddedException; import org.mxchange.addressbook.manager.contact.ManageableAddressbookContact; import org.mxchange.jcore.client.Client; -import org.mxchange.jcore.client.gui.ClientFrame; import org.mxchange.jcore.contact.Contact; import org.mxchange.jcore.contact.Gender; import org.mxchange.jcore.exceptions.BadTokenException; import org.mxchange.jcore.exceptions.CorruptedDatabaseFileException; import org.mxchange.jcore.exceptions.FrameAlreadyInitializedException; -import org.mxchange.jcore.model.swing.contact.ContactTableModel; +import org.mxchange.jswingcore.client.gui.ClientFrame; +import org.mxchange.jswingcore.model.swing.contact.ContactTableModel; /** * diff --git a/src/org/mxchange/addressbook/client/gui/SwingClient.java b/src/org/mxchange/addressbook/client/gui/SwingClient.java index afab2fc..b7f8d04 100644 --- a/src/org/mxchange/addressbook/client/gui/SwingClient.java +++ b/src/org/mxchange/addressbook/client/gui/SwingClient.java @@ -23,13 +23,13 @@ import org.mxchange.addressbook.client.BaseAddressbookClient; import org.mxchange.addressbook.menu.Menu; import org.mxchange.addressbook.menu.item.SelectableMenuItem; import org.mxchange.jcore.application.Application; -import org.mxchange.jcore.client.gui.ClientFrame; import org.mxchange.jcore.contact.Contact; import org.mxchange.jcore.contact.Gender; import org.mxchange.jcore.exceptions.BadTokenException; import org.mxchange.jcore.exceptions.FrameAlreadyInitializedException; import org.mxchange.jcore.exceptions.UnhandledUserChoiceException; import org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException; +import org.mxchange.jswingcore.client.gui.ClientFrame; /** *