You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commonsrdf.apache.org by wi...@apache.org on 2015/03/27 19:15:37 UTC

[39/50] [abbrv] incubator-commonsrdf git commit: use
to make BlankNode JavaDoc readable..

use <blockquote> to make BlankNode JavaDoc readable..


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

Branch: refs/heads/master
Commit: 44f878d86250588aae8559cb4dd1416a637d1bc0
Parents: 61f97fc
Author: Stian Soiland-Reyes <st...@apache.org>
Authored: Thu Feb 5 23:07:15 2015 +0000
Committer: Stian Soiland-Reyes <st...@apache.org>
Committed: Thu Feb 5 23:07:15 2015 +0000

----------------------------------------------------------------------
 .../java/com/github/commonsrdf/api/BlankNode.java | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/44f878d8/api/src/main/java/com/github/commonsrdf/api/BlankNode.java
----------------------------------------------------------------------
diff --git a/api/src/main/java/com/github/commonsrdf/api/BlankNode.java b/api/src/main/java/com/github/commonsrdf/api/BlankNode.java
index ea586e1..c083cbc 100644
--- a/api/src/main/java/com/github/commonsrdf/api/BlankNode.java
+++ b/api/src/main/java/com/github/commonsrdf/api/BlankNode.java
@@ -19,11 +19,18 @@ package com.github.commonsrdf.api;
  * "http://www.w3.org/TR/rdf11-concepts/#section-blank-nodes" >RDF-1.1 Concepts
  * and Abstract Syntax</a>, a W3C Recommendation published on 25 February 2014.<br>
  * <p>
- * Note that: Blank nodes are disjoint from IRIs and literals. Otherwise, the
- * set of possible blank nodes is arbitrary. RDF makes no reference to any
- * internal structure of blank nodes.
+ * Note: 
+ * <blockquote cite="http://www.w3.org/TR/rdf11-concepts/#dfn-blank-node">
+ *   <a href="http://www.w3.org/TR/rdf11-concepts/#dfn-blank-node">Blank nodes</a>
+ *   are disjoint from IRIs and literals. Otherwise, the
+ *   set of possible blank nodes is arbitrary. RDF makes no reference to any
+ *   internal structure of blank nodes.
+ * </blockquote>
  * <p>
- * Also note that: Blank node identifiers are local identifiers that are used in
+ * Also note that: 
+ * <blockquote cite="http://www.w3.org/TR/rdf11-concepts/#dfn-blank-node-identifier">
+ *   <a href="http://www.w3.org/TR/rdf11-concepts/#dfn-blank-node-identifier">Blank node identifiers</a>
+ *   are local identifiers that are used in
  * some concrete RDF syntaxes or RDF store implementations. They are always
  * locally scoped to the file or RDF store, and are not persistent or portable
  * identifiers for blank nodes. Blank node identifiers are not part of the RDF
@@ -34,8 +41,9 @@ package com.github.commonsrdf.api;
  * to be careful not to create the same blank node from multiple occurrences of
  * the same blank node identifier except in situations where this is supported
  * by the syntax.
+ * </blockquote>
  *
- * @see <a href= "http://www.w3.org/TR/rdf11-concepts/#dfn-blank-node">RDF-1.1
+ * @see <a href="http://www.w3.org/TR/rdf11-concepts/#dfn-blank-node">RDF-1.1
  *      Blank Node</a>
  */
 public interface BlankNode extends BlankNodeOrIRI {