You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commonsrdf.apache.org by st...@apache.org on 2016/07/02 16:14:56 UTC

[39/50] [abbrv] incubator-commonsrdf git commit: javadoc syntax

javadoc syntax


Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/1a152233
Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/1a152233
Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/1a152233

Branch: refs/heads/jena
Commit: 1a152233646e31cbe530cd9ebbe86664cfbfd0fe
Parents: df5b1f4
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Sun Mar 27 20:25:55 2016 +0100
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Tue Mar 29 14:06:49 2016 +0100

----------------------------------------------------------------------
 .../java/org/apache/commons/rdf/api/RDFParserBuilder.java   | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/1a152233/api/src/main/java/org/apache/commons/rdf/api/RDFParserBuilder.java
----------------------------------------------------------------------
diff --git a/api/src/main/java/org/apache/commons/rdf/api/RDFParserBuilder.java b/api/src/main/java/org/apache/commons/rdf/api/RDFParserBuilder.java
index adee4e4..0aacb6a 100644
--- a/api/src/main/java/org/apache/commons/rdf/api/RDFParserBuilder.java
+++ b/api/src/main/java/org/apache/commons/rdf/api/RDFParserBuilder.java
@@ -19,10 +19,8 @@ package org.apache.commons.rdf.api;
 
 import java.io.IOException;
 import java.io.InputStream;
-import java.net.URL;
 import java.nio.charset.StandardCharsets;
 import java.nio.file.Path;
-import java.util.Locale;
 import java.util.concurrent.Future;
 
 /**
@@ -126,7 +124,8 @@ public interface RDFParserBuilder {
 	 * <p>
 	 * The default if this option has not been set is that each call to
 	 * {@link #parse()} will return a new {@link Graph} (created using
-	 * {@link RDFTermFactory#createGraph() if #rdfTermFactory(RDFTermFactory)
+	 * {@link RDFTermFactory#createGraph()} 
+	 * if {@link #rdfTermFactory(RDFTermFactory)}
 	 * has been set).
 	 * 
 	 * @param graph
@@ -140,7 +139,7 @@ public interface RDFParserBuilder {
 	 * Specify a base IRI to use for parsing any relative IRI references.
 	 * <p>
 	 * Setting this option will override any protocol-specific base IRI (e.g.
-	 * <code>Content-Location</code> header) or the {@link #source(URL)} URL,
+	 * <code>Content-Location</code> header) or the {@link #source(IRI)} IRI,
 	 * but does not override any base IRIs set within the source document (e.g.
 	 * <code>@base</code> in Turtle documents).
 	 * <p>
@@ -161,7 +160,7 @@ public interface RDFParserBuilder {
 	 * Specify a base IRI to use for parsing any relative IRI references.
 	 * <p>
 	 * Setting this option will override any protocol-specific base IRI (e.g.
-	 * <code>Content-Location</code> header) or the {@link #source(URL)} URL,
+	 * <code>Content-Location</code> header) or the {@link #source(IRI)} IRI,
 	 * but does not override any base IRIs set within the source document (e.g.
 	 * <code>@base</code> in Turtle documents).
 	 * <p>