dist.javadoc.dir=${dist.dir}/javadoc
endorsed.classpath=
excludes=
+file.reference.jcontacts-lib.jar=lib/jcontacts-lib.jar
file.reference.jcore.jar=lib/jcore.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
jar.index=${jnlp.enabled}
javac.classpath=\
${file.reference.jcore.jar}:\
+ ${file.reference.jcontacts-lib.jar}:\
${file.reference.log4j-api-2.3.jar}:\
${file.reference.log4j-core-2.3.jar}
# Space-separated list of extra javac options
${javac.test.classpath}:\
${build.test.classes.dir}
source.encoding=UTF-8
+source.reference.jcontacts-lib.jar=../jcontacts-lib/src/
source.reference.jcore.jar=../jcore/src
src.dir=src
test.src.dir=test
package org.mxchange.jcoreswing.client.gui;
import java.io.IOException;
+import org.mxchange.jcontacts.contact.Contact;
import org.mxchange.jcore.FrameworkInterface;
import org.mxchange.jcore.client.Client;
import org.mxchange.jcore.exceptions.FrameAlreadyInitializedException;
-import org.mxchange.jcore.model.contact.Contact;
/**
* An interface for applications with a Swing frame
package org.mxchange.jcoreswing.model.swing.contact;
import javax.swing.table.TableModel;
+import org.mxchange.jcontacts.contact.Contact;
import org.mxchange.jcore.manager.Manageable;
-import org.mxchange.jcore.model.contact.Contact;
import org.mxchange.jcoreswing.model.BaseModel;
import org.mxchange.jcoreswing.model.Model;