dist.javadoc.dir=${dist.dir}/javadoc\r
endorsed.classpath=\r
excludes=\r
-file.reference.addressbook-core.jar=lib/addressbook-core.jar\r
file.reference.jaddressbook-core.jar=lib/jaddressbook-core.jar\r
file.reference.jcontacts-business-core.jar=lib/jcontacts-business-core.jar\r
file.reference.jcontacts-core.jar=lib/jcontacts-core.jar\r
-file.reference.jcore-logger-lib.jar=lib/jcore-logger-lib.jar\r
-file.reference.jcore.jar=lib/jcore.jar\r
-file.reference.jcoreee.jar=lib/jcoreee.jar\r
-file.reference.jcountry-core.jar=lib/jcountry-core.jar\r
-file.reference.jphone-core.jar=lib/jphone-core.jar\r
file.reference.juser-core.jar=lib/juser-core.jar\r
-file.reference.juser-lib.jar=lib/juser-lib.jar\r
includes=**\r
jar.archive.disabled=${jnlp.enabled}\r
jar.compress=false\r
jar.index=${jnlp.enabled}\r
javac.classpath=\\r
- ${file.reference.jcore.jar}:\\r
- ${file.reference.jcoreee.jar}:\\r
- ${file.reference.jcore-logger-lib.jar}:\\r
- ${file.reference.jcountry-core.jar}:\\r
- ${file.reference.jphone-core.jar}:\\r
${file.reference.jcontacts-core.jar}:\\r
${file.reference.jcontacts-business-core.jar}:\\r
${file.reference.juser-core.jar}:\\r
- ${file.reference.juser-lib.jar}:\\r
${file.reference.jaddressbook-core.jar}:\\r
- ${file.reference.addressbook-core.jar}:\\r
- ${libs.javaee-api-7.0.classpath}:\\r
- ${libs.jpa20-persistence.classpath}\r
+ ${libs.javaee-api-7.0.classpath}\r
# Space-separated list of extra javac options\r
javac.compilerargs=-Xlint:unchecked -Xlint:deprecation\r
javac.deprecation=true\r
${javac.test.classpath}:\\r
${build.test.classes.dir}\r
source.encoding=UTF-8\r
-source.reference.addressbook-core.jar=../addressbook-core/src/\r
source.reference.jaddressbook-core.jar=../jaddressbook-core/src/\r
source.reference.jcontacts-business-core.jar=../jcontacts-business-core/src/\r
source.reference.jcontacts-core.jar=../jcontacts-core/src/\r
-source.reference.jcore-logger-lib.jar=../jcore-logger-lib/src/\r
-source.reference.jcore.jar=../jcore/src\r
-source.reference.jcoreee.jar=../jcoreee/src/\r
-source.reference.jcountry-core.jar=../jcountry-core/src/\r
-source.reference.jphone-core.jar=../jphone-core/src/\r
source.reference.juser-core.jar=../juser-core/src/\r
-source.reference.juser-lib.jar=../juser-lib/src/\r
src.dir=src\r
test.src.dir=test\r
* <p>
* @return Address book instance
* <p>
- * @throws org.mxchange.jaddressbookcore.exceptions.AddressbookNotFoundException
- * If the address book cannot be found by given id number
+ * @throws AddressbookNotFoundException If the address book cannot be found
+ * by given id number
* @throws NullPointerException If addressbookId is null
* @throws IllegalArgumentException If the id number is below 1
*/
* <p>
* @return Updated address book instance
* <p>
- * @throws
- * org.mxchange.jaddressbookcore.exceptions.AddressbookNameAlreadyUsedException
- * If the address book's name has already been used by the user.
+ * @throws AddressbookNameAlreadyUsedException If the address book's name
+ * has already been used by the user.
*/
Addressbook createAddressbook (final Addressbook addressbook) throws AddressbookNameAlreadyUsedException;
* @return Whether the name has already been used by the user
*/
boolean isAddressbookNameUsed (final Addressbook addressbook);
+
}
* <p>
* @param user User instance to get list of shared address books (shares)
* from
- *
+ * <p>
* @return List of shares (= shared address book entries)
*/
List<ShareableAddressbook> allSharedAddressbooks (final User user);
* <p>
* @param sharee User sharee instance
* @param addressbook Address book instance
- *
+ * <p>
* @return Updated share instance
- *
- * @throws
- * org.mxchange.addressbook.exceptions.UserAlreadySharingAddressbookException
- * When the user is already sharing the address book
+ * <p>
+ * @throws UserAlreadySharingAddressbookException When the user is already
+ * sharing the address book
*/
ShareableAddressbook startSharing (final User sharee, final Addressbook addressbook) throws UserAlreadySharingAddressbookException;