]> git.mxchange.org Git - jcontacts-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 23 Nov 2022 20:36:29 +0000 (21:36 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 23 Nov 2022 20:36:29 +0000 (21:36 +0100)
- documented another thrown exception
- upgraded project files for Apache NetBeans IDE 15

lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar
lib/nblibraries.properties
nbproject/project.properties
src/org/mxchange/jcontacts/model/mobile/AdminContactsMobileSessionBeanRemote.java

index eaf6790a221ad1983616f4c98377bd9876bc6224..174d1fcfa7325a5f9f1927055b019f286d066c0c 100644 (file)
Binary files a/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar and b/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar differ
index 14b9f2bb9dc73b7e693bf006e509aab1817c1bc0..5efdb9a260cc8469a5cce90f1b79b7c0edcfcafd 100644 (file)
@@ -1,7 +1,7 @@
 libs.CopyLibs.classpath=\
     ${base}/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar
 libs.CopyLibs.displayName=CopyLibs Task
-libs.CopyLibs.prop-version=2.0
+libs.CopyLibs.prop-version=3.0
 libs.javaee-api-7.0.classpath=\
     ${base}/javaee-api-7.0/javaee-api-7.0.jar
 libs.javaee-api-7.0.displayName=Java EE 7 API Library
index 194bc8541662be52d1cebe6cd8dc342d39ba2282..5840a557a8a39201aefddb194c253aacac5c7001 100644 (file)
@@ -20,8 +20,12 @@ build.test.results.dir=${build.dir}/test/results
 #debug.transport=dt_socket
 debug.classpath=\
     ${run.classpath}
+debug.modulepath=\
+    ${run.modulepath}
 debug.test.classpath=\
     ${run.test.classpath}
+debug.test.modulepath=\
+    ${run.test.modulepath}
 # Files in build.classes.dir which should be excluded from distribution jar
 dist.archive.excludes=
 # This directory is removed when the project is cleaned:
@@ -44,6 +48,8 @@ javac.classpath=\
 javac.compilerargs=-Xlint:unchecked -Xlint:deprecation
 javac.deprecation=true
 javac.external.vm=false
+javac.modulepath=
+javac.processormodulepath=
 javac.processorpath=\
     ${javac.classpath}
 javac.source=1.7
@@ -51,6 +57,8 @@ javac.target=1.7
 javac.test.classpath=\
     ${javac.classpath}:\
     ${build.classes.dir}
+javac.test.modulepath=\
+    ${javac.modulepath}
 javac.test.processorpath=\
     ${javac.test.classpath}
 javadoc.additionalparam=
@@ -88,9 +96,13 @@ run.classpath=\
 # You may also define separate properties like run-sys-prop.name=value instead of -Dname=value.
 # To set system properties for unit tests define test-sys-prop.name=value:
 run.jvmargs=
+run.modulepath=\
+    ${javac.modulepath}
 run.test.classpath=\
     ${javac.test.classpath}:\
     ${build.test.classes.dir}
+run.test.modulepath=\
+    ${javac.test.modulepath}
 source.encoding=UTF-8
 source.reference.jcontacts-core.jar=../jcontacts-core/src/
 source.reference.jphone-core.jar=../jphone-core/src/
index 6bc3d8b69c8bc003f5108b26c065fb951552d590..2a576d4b4535b6d5eb81cc091af2eab6c50648e0 100644 (file)
@@ -34,9 +34,8 @@ import org.mxchange.jphone.model.phonenumbers.mobile.DialableMobileNumber;
 public interface AdminContactsMobileSessionBeanRemote extends Serializable {
 
        /**
-        * Links existing mobile number with given contact instance. The id number
-        * should be set.
-        * <p>
+        * Links existing mobile number with given contact instance.The id number
+        * should be set.<p>
         * @param contact      Contact to link to
         * @param mobileNumber Mobile number to link
         * <p>
@@ -44,6 +43,7 @@ public interface AdminContactsMobileSessionBeanRemote extends Serializable {
         * <p>
         * @throws MobileNumberAlreadyLinkedException If a mobile number is already
         * linked in contact
+        * @throws ContactNotFoundException If the given contact wasn't found
         */
        Contact linkExistingMobileNumberWithContact (final Contact contact, final DialableMobileNumber mobileNumber) throws MobileNumberAlreadyLinkedException, ContactNotFoundException;