You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by rv...@apache.org on 2014/12/01 17:03:57 UTC

[13/19] jena git commit: Correct javadoc for isPlainLiteral.

Correct javadoc for isPlainLiteral.

Project: http://git-wip-us.apache.org/repos/asf/jena/repo
Commit: http://git-wip-us.apache.org/repos/asf/jena/commit/a1c50acc
Tree: http://git-wip-us.apache.org/repos/asf/jena/tree/a1c50acc
Diff: http://git-wip-us.apache.org/repos/asf/jena/diff/a1c50acc

Branch: refs/heads/hadoop-rdf
Commit: a1c50acc976e6e5d6a72a7da1cdbf4c78bfbcc48
Parents: c33c239
Author: Andy Seaborne <an...@apache.org>
Authored: Sun Nov 30 12:40:46 2014 +0000
Committer: Andy Seaborne <an...@apache.org>
Committed: Sun Nov 30 12:40:46 2014 +0000

----------------------------------------------------------------------
 .../src/main/java/com/hp/hpl/jena/rdf/model/impl/LiteralImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jena/blob/a1c50acc/jena-core/src/main/java/com/hp/hpl/jena/rdf/model/impl/LiteralImpl.java
----------------------------------------------------------------------
diff --git a/jena-core/src/main/java/com/hp/hpl/jena/rdf/model/impl/LiteralImpl.java b/jena-core/src/main/java/com/hp/hpl/jena/rdf/model/impl/LiteralImpl.java
index ac34e49..0245eba 100644
--- a/jena-core/src/main/java/com/hp/hpl/jena/rdf/model/impl/LiteralImpl.java
+++ b/jena-core/src/main/java/com/hp/hpl/jena/rdf/model/impl/LiteralImpl.java
@@ -118,7 +118,7 @@ public class LiteralImpl extends EnhNode implements Literal {
     
     /**
      * Return true if this is a "plain" (i.e. old style, not typed) literal.
-     * For RDF 1.1, the most compatible choice is "xsd:string". 
+     * For RDF 1.1, the most compatible choice is "xsd:string" or "rdf:langString". 
      */
     private boolean isPlainLiteral() {
         if ( JenaRuntime.isRDF11 )