Repository: any23 Updated Branches: refs/heads/master 09072c922 -> dbf1d9a5d
Fixed ANY23-311 - solved javadoc problems Signed-off-by:Jacek Grzebyta <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/any23/repo Commit: http://git-wip-us.apache.org/repos/asf/any23/commit/2a8d5351 Tree: http://git-wip-us.apache.org/repos/asf/any23/tree/2a8d5351 Diff: http://git-wip-us.apache.org/repos/asf/any23/diff/2a8d5351 Branch: refs/heads/master Commit: 2a8d53518cc6ae2bc5e8b09fcd6cf5f374a6105f Parents: 09072c9 Author: Jacek Grzebyta <[email protected]> Authored: Wed Sep 13 15:14:21 2017 +0100 Committer: Jacek Grzebyta <[email protected]> Committed: Wed Sep 13 15:14:21 2017 +0100 ---------------------------------------------------------------------- .../java/org/apache/any23/rdf/RDFUtils.java | 26 ++++++-------------- 1 file changed, 8 insertions(+), 18 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/any23/blob/2a8d5351/core/src/main/java/org/apache/any23/rdf/RDFUtils.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/any23/rdf/RDFUtils.java b/core/src/main/java/org/apache/any23/rdf/RDFUtils.java index 498b01d..f10ca92 100644 --- a/core/src/main/java/org/apache/any23/rdf/RDFUtils.java +++ b/core/src/main/java/org/apache/any23/rdf/RDFUtils.java @@ -59,6 +59,7 @@ import java.util.Optional; * * @author Michele Mostarda ([email protected]) * @author Davide Palmisano ([email protected]) + * @author Jacek Grzebyta ([email protected]) */ public class RDFUtils { @@ -574,7 +575,7 @@ public class RDFUtils { } /** - * Ref {@link #makeIRI(java.lang.String, org.eclipse.rdf4j.model.IRI, boolean) }. + * {@link #makeIRI(java.lang.String, org.eclipse.rdf4j.model.IRI, boolean) }. * @param docUri * @return */ @@ -583,7 +584,7 @@ public class RDFUtils { } /** - * Ref {@link #makeIRI(java.lang.String, org.eclipse.rdf4j.model.IRI, boolean) }. + * {@link #makeIRI(java.lang.String, org.eclipse.rdf4j.model.IRI, boolean) }. * @param type * @param docIRI * @return @@ -593,24 +594,13 @@ public class RDFUtils { } /** - * Creates implementation of {@link Resource} from given arguments: <it>type</it> and - * <it>docIRI</it>. - * <ul> - * <li>The <it>type</type> argument is converted following Java naming conventions with - * {@link StringUtils#implementJavaNaming(java.lang.String) }. + * Creates implementation of {@link Resource} from given arguments: <i>type</i> and <i>docIRI</i>. * - * <li>The <it>docIRI</it> is treated as a namespace. If it ends with '/' character than - * stays unchanged otherwise the hash character '#' is added. - * - * <li>If <it>addId</it> is TRUE than combination of underscore and the node identifier is added to - * the end ('{@code_<int>'}). - * </ul> - * - * @param type - * @param docIRI - * @param addId + * @param type This argument is converted following Java naming conventions with {@link StringUtils#implementJavaNaming(java.lang.String) }. + * @param docIRI It is a namespace. If it ends with '/' character than stays unchanged otherwise the hash character '#' is added to the end. + * @param addId If argument is <b>TRUE</b> than the node identifier is added to the end formated <tt>'_{int}'</tt>. * @return {@link Resource} implementation - * @see http://www.geeksforgeeks.org/java-naming-conventions/ + * @see <a href="http://www.geeksforgeeks.org/java-naming-conventions/">Java Naming Conventions [from GeeksForGeeks]</a>. */ public static Resource makeIRI(String type, IRI docIRI, boolean addId) {
