You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by an...@apache.org on 2012/04/13 15:55:46 UTC

svn commit: r1325772 - /jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/api/NodeState.java

Author: angela
Date: Fri Apr 13 13:55:45 2012
New Revision: 1325772

URL: http://svn.apache.org/viewvc?rev=1325772&view=rev
Log:
OAK-18 - Define Oak API (minor improvement, @code)

Modified:
    jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/api/NodeState.java

Modified: jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/api/NodeState.java
URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/api/NodeState.java?rev=1325772&r1=1325771&r2=1325772&view=diff
==============================================================================
--- jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/api/NodeState.java (original)
+++ jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/api/NodeState.java Fri Apr 13 13:55:45 2012
@@ -94,12 +94,12 @@ public interface NodeState {
      * is not parsed or otherwise interpreted by this method.
      * <p>
      * The namespace of properties and child nodes is shared, so if
-     * this method returns a non-<code>null</code> value for a given
+     * this method returns a non-{@code null} value for a given
      * name, then {@link #getChildNode(String)} is guaranteed to return
-     * <code>null</code> for the same name.
+     * {@code null} for the same name.
      *
      * @param name name of the property to return
-     * @return named property, or <code>null</code> if not found
+     * @return named property, or {@code null} if not found
      */
     PropertyState getProperty(String name);
 
@@ -125,12 +125,12 @@ public interface NodeState {
      * is not parsed or otherwise interpreted by this method.
      * <p>
      * The namespace of properties and child nodes is shared, so if
-     * this method returns a non-<code>null</code> value for a given
+     * this method returns a non-{@code null} value for a given
      * name, then {@link #getProperty(String)} is guaranteed to return
-     * <code>null</code> for the same name.
+     * {@code null} for the same name.
      *
      * @param name name of the child node to return
-     * @return named child node, or <code>null</code> if not found
+     * @return named child node, or {@code null} if not found
      */
     NodeState getChildNode(String name);