You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by st...@apache.org on 2018/02/20 10:35:39 UTC

[8/9] commons-rdf git commit: Reference Buildable in javadoc

Reference Buildable in javadoc


Project: http://git-wip-us.apache.org/repos/asf/commons-rdf/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-rdf/commit/8cc07df8
Tree: http://git-wip-us.apache.org/repos/asf/commons-rdf/tree/8cc07df8
Diff: http://git-wip-us.apache.org/repos/asf/commons-rdf/diff/8cc07df8

Branch: refs/heads/fluent-parser
Commit: 8cc07df8def7424c1df5f6b7ee939d995c034558
Parents: 40d016b
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Tue Feb 20 10:34:58 2018 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Tue Feb 20 10:34:58 2018 +0000

----------------------------------------------------------------------
 .../src/main/java/org/apache/commons/rdf/api/RDF.java           | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-rdf/blob/8cc07df8/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/RDF.java
----------------------------------------------------------------------
diff --git a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/RDF.java b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/RDF.java
index 581d615..8fab94f 100644
--- a/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/RDF.java
+++ b/commons-rdf-api/src/main/java/org/apache/commons/rdf/api/RDF.java
@@ -23,6 +23,7 @@ import java.util.Optional;
 import java.util.concurrent.Future;
 
 import org.apache.commons.rdf.api.fluentparser.Async;
+import org.apache.commons.rdf.api.fluentparser.Buildable;
 import org.apache.commons.rdf.api.fluentparser.Sync;
 import org.apache.commons.rdf.api.io.Parsed;
 import org.apache.commons.rdf.api.io.Parser;
@@ -301,13 +302,13 @@ public interface RDF {
      * Note that the returned {@link ParserBuilder} may be mutable and not
      * thread-safe, and should only be used for parsing once. A reusable,
      * immutable builder can be created at any step with
-     * {@link _Builder#build()}.
+     * {@link Buildable#build()}.
      * 
      * @return {@link ParserBuilder} supported by this RDF implementation 
      * @throws UnsupportedOperationException
      *             If this RDF implementation does not support parsing RDF
      */
-    public ParserBuilder parserBuilder() throws UnsupportedOperationException;
+    public ParserBuilder<Dataset> parserBuilder() throws UnsupportedOperationException;
     
     /**
      * Return a parser for the given RDF syntax.