Author: dbrosius
Date: Fri Jan  1 15:49:06 2016
New Revision: 1722499

URL: http://svn.apache.org/viewvc?rev=1722499&view=rev
Log:
some javadoc error fixes

Modified:
    
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/PathUtils.java
    
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/concurrent/NotifyingFutureTask.java
    
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/jmx/AnnotatedStandardMBean.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/Oak.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/Query.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/ast/ConstraintImpl.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/ast/SourceImpl.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/AuthenticationConfigurationImpl.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/query/Cursors.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/ConfigurationParameters.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/UserConfiguration.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/UserConstants.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/action/AccessControlAction.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/state/NodeBuilder.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/state/NodeState.java
    
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/xml/ReferenceChangeTracker.java

Modified: 
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/PathUtils.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/PathUtils.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/PathUtils.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/PathUtils.java
 Fri Jan  1 15:49:06 2016
@@ -111,7 +111,7 @@ public final class PathUtils {
      * Get the nth ancestor of a path. The 1st ancestor is the parent path,
      * 2nd ancestor the grandparent path, and so on...
      * <p>
-     * If nth <= 0, the path argument is returned as is.
+     * If {@code nth <= 0}, the path argument is returned as is.
      *
      * @param path the path
      * @param nth  indicates the ancestor level for which the path should be

Modified: 
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/concurrent/NotifyingFutureTask.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/concurrent/NotifyingFutureTask.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/concurrent/NotifyingFutureTask.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/concurrent/NotifyingFutureTask.java
 Fri Jan  1 15:49:06 2016
@@ -50,10 +50,10 @@ public class NotifyingFutureTask extends
      * Set the on complete handler. The handler will run exactly once after
      * the task terminated. If the task has already terminated at the time of
      * this method call the handler will execute immediately.
-     * <p/>
+     * <p>
      * Note: there is no guarantee to which handler will run when the method
      * is called multiple times with different arguments.
-     *
+     * </p>
      * @param onComplete listener to invoke upon completion
      */
     public void onComplete(Runnable onComplete) {
@@ -85,4 +85,4 @@ public class NotifyingFutureTask extends
         f.run();
         return f;
     }
-}
\ No newline at end of file
+}

Modified: 
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/jmx/AnnotatedStandardMBean.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/jmx/AnnotatedStandardMBean.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/jmx/AnnotatedStandardMBean.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-commons/src/main/java/org/apache/jackrabbit/oak/commons/jmx/AnnotatedStandardMBean.java
 Fri Jan  1 15:49:06 2016
@@ -39,7 +39,7 @@ public class AnnotatedStandardMBean exte
      * Make a DynamicMBean out of the object implementation, using the 
specified
      * mbeanInterface class.
      *
-     * @see {@link javax.management.StandardMBean#StandardMBean(Object, Class)}
+     * @see javax.management.StandardMBean#StandardMBean(Object, Class)
      */
     public <T> AnnotatedStandardMBean(T implementation, Class<T> 
mbeanInterface){
         super(implementation, mbeanInterface, false);

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/Oak.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/Oak.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/Oak.java 
(original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/Oak.java 
Fri Jan  1 15:49:06 2016
@@ -540,7 +540,7 @@ public class Oak {
      * <p>
      * Please note that when enabling the background indexer, you need to take
      * care of calling
-     * <code>#shutdown<code> on the <code>executor<code> provided for this Oak 
instance.
+     * <code>#shutdown</code> on the <code>executor</code> provided for this 
Oak instance.
      * </p>
      * @deprecated Use {@link Oak#withAsyncIndexing(String, long)} instead
      */
@@ -557,7 +557,7 @@ public class Oak {
      * <p>
      * Please note that when enabling the background indexer, you need to take
      * care of calling
-     * <code>#shutdown<code> on the <code>executor<code> provided for this Oak 
instance.
+     * <code>#shutdown</code> on the <code>executor</code> provided for this 
Oak instance.
      * </p>
      */
     public Oak withAsyncIndexing(@Nonnull String name, long delayInSeconds) {

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/Query.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/Query.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/Query.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/Query.java
 Fri Jan  1 15:49:06 2016
@@ -164,7 +164,7 @@ public interface Query {
     
     /**
      * @return the original statement as it was used to construct the object. 
If not provided the
-     *         {@link #toString()} will be used instead.
+     *         toString() will be used instead.
      */
     String getStatement();
     

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/ast/ConstraintImpl.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/ast/ConstraintImpl.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/ast/ConstraintImpl.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/ast/ConstraintImpl.java
 Fri Jan  1 15:49:06 2016
@@ -61,7 +61,7 @@ public abstract class ConstraintImpl ext
      * is the case for example for full-text constraints if there is no
      * full-text index (unless FullTextComparisonWithoutIndex is enabled). This
      * will also allow is to add conditions that stop further processing for
-     * other reasons, similar to "WHERE ROWNUM < 10" in Oracle.
+     * other reasons, similar to {@code "WHERE ROWNUM < 10"} in Oracle.
      * 
      * @return true if further processing should be stopped
      */

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/ast/SourceImpl.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/ast/SourceImpl.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/ast/SourceImpl.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/query/ast/SourceImpl.java
 Fri Jan  1 15:49:06 2016
@@ -130,7 +130,7 @@ public abstract class SourceImpl extends
     public abstract boolean next();
 
     /**
-     * <b>!Test purpose only! <b>
+     * <b>!Test purpose only! </b>
      * 
      * this creates a filter for the given query
      * 

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/AuthenticationConfigurationImpl.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/AuthenticationConfigurationImpl.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/AuthenticationConfigurationImpl.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/security/authentication/AuthenticationConfigurationImpl.java
 Fri Jan  1 15:49:06 2016
@@ -108,7 +108,7 @@ public class AuthenticationConfiguration
      *     related validation is omitted</li>
      * </ul>
      *
-     * <h4>Configuration Options</h4>
+     * <h3>Configuration Options</h3>
      * <ul>
      *     <li>{@link #PARAM_APP_NAME}: The appName passed to
      *     {@code Configuration#getAppConfigurationEntry(String)}. The default
@@ -132,4 +132,4 @@ public class AuthenticationConfiguration
         }
         return new LoginContextProviderImpl(appName, getParameters(), 
contentRepository, getSecurityProvider(), whiteboard);
     }
-}
\ No newline at end of file
+}

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/query/Cursors.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/query/Cursors.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/query/Cursors.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/query/Cursors.java
 Fri Jan  1 15:49:06 2016
@@ -106,7 +106,7 @@ public class Cursors {
      * returned cursor guarantees distinct rows.
      *
      * @param c the cursor to wrap.
-     * @param level the ancestor level. Must be >= 1.
+     * @param level the ancestor level. Must be {@code >= 1}.
      * @return cursor over the ancestors of <code>c</code> at 
<code>level</code>.
      */
     public static Cursor newAncestorCursor(Cursor c, int level, 
QueryEngineSettings settings) {

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/ConfigurationParameters.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/ConfigurationParameters.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/ConfigurationParameters.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/ConfigurationParameters.java
 Fri Jan  1 15:49:06 2016
@@ -450,6 +450,7 @@ public final class ConfigurationParamete
 
         /**
          * Parses a value string into a duration. the String has the following 
format:
+         * {@code
          * <xmp>
          *     format:= (value [ unit ])+;
          *     value:= float value;
@@ -462,6 +463,7 @@ public final class ConfigurationParamete
          *     "1s 50ms": 1050 milliseconds
          *     "1.5d":  1 1/2 days == 36 hours.
          * </xmp>
+         * }
          *
          * @param str the string to parse
          * @return the new Milliseconds object or null.
@@ -534,4 +536,4 @@ public final class ConfigurationParamete
             return (int) (value ^ (value >>> 32));
         }
     }
-}
\ No newline at end of file
+}

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/UserConfiguration.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/UserConfiguration.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/UserConfiguration.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/UserConfiguration.java
 Fri Jan  1 15:49:06 2016
@@ -60,7 +60,7 @@ public interface UserConfiguration exten
      * provider implementation should be used that acts on public user 
management
      * API.
      *
-     * @see {@link 
org.apache.jackrabbit.oak.spi.security.principal.PrincipalConfiguration}
+     * @see 
org.apache.jackrabbit.oak.spi.security.principal.PrincipalConfiguration
      */
     @Nullable
     PrincipalProvider getUserPrincipalProvider(@Nonnull Root root, @Nonnull 
NamePathMapper namePathMapper);

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/UserConstants.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/UserConstants.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/UserConstants.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/UserConstants.java
 Fri Jan  1 15:49:06 2016
@@ -204,7 +204,7 @@ public interface UserConstants {
 
     /**
      * Optional configuration parameter indicating the maximum age in days a 
password may have
-     * before it expires. If the value specified is > 0, password expiry is 
implicitly enabled.
+     * before it expires. If the value specified is {@code > 0}, password 
expiry is implicitly enabled.
      */
     String PARAM_PASSWORD_MAX_AGE = "passwordMaxAge";
 
@@ -232,7 +232,7 @@ public interface UserConstants {
 
     /**
      * Optional configuration parameter indicating the maximum number of 
passwords recorded for a user after
-     * password changes. If the value specified is > 0, password history 
checking during password change is implicitly
+     * password changes. If the value specified is {@code > 0}, password 
history checking during password change is implicitly
      * enabled and the new password provided during a password change must not 
be found in the already recorded
      * history.
      *

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/action/AccessControlAction.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/action/AccessControlAction.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/action/AccessControlAction.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/security/user/action/AccessControlAction.java
 Fri Jan  1 15:49:06 2016
@@ -48,7 +48,7 @@ import org.slf4j.LoggerFactory;
  * granted on it's own 'home directory' being represented by the new node
  * associated with that new authorizable.
  *
- * <p>The following to configuration parameters are available with this 
implementation:
+ * <p>The following to configuration parameters are available with this 
implementation:</p>
  * <ul>
  *    <li><strong>groupPrivilegeNames</strong>: the value is expected to be a
  *    comma separated list of privileges that will be granted to the new group 
on
@@ -57,16 +57,14 @@ import org.slf4j.LoggerFactory;
  *    comma separated list of privileges that will be granted to the new user 
on
  *    the user node.</li>
  * </ul>
- * </p>
  * <p>Example configuration:
  * <pre>
  *    groupPrivilegeNames : ["jcr:read"]
  *    userPrivilegeNames  : ["jcr:read,rep:write"]
  * </pre>
- * </p>
  * <p>This configuration could for example lead to the following content
  * structure upon user or group creation. Note however that the resulting
- * structure depends on the actual access control management being in place:
+ * structure depends on the actual access control management being in 
place:</p>
  *
  * <pre>
  *     UserManager umgr = ((JackrabbitSession) session).getUserManager();
@@ -96,7 +94,6 @@ import org.slf4j.LoggerFactory;
  *               - rep:privileges    = ["jcr:read"]
  *           - rep:principalName     = "testGroup"
  * </pre>
- * </p>
  */
 public class AccessControlAction extends AbstractAuthorizableAction {
 

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/state/NodeBuilder.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/state/NodeBuilder.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/state/NodeBuilder.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/state/NodeBuilder.java
 Fri Jan  1 15:49:06 2016
@@ -310,10 +310,12 @@ public interface NodeBuilder {
      * Returns the boolean value of the named property. The implementation
      * is equivalent to the following code, but may be optimized.
      * <pre>
+     * {@code
      * PropertyState property = builder.getProperty(name);
      * return property != null
      *     && property.getType() == Type.BOOLEAN
      *     && property.getValue(Type.BOOLEAN);
+     * }
      * </pre>
      *
      * @param name property name
@@ -325,12 +327,14 @@ public interface NodeBuilder {
      * Returns the name value of the named property. The implementation
      * is equivalent to the following code, but may be optimized.
      * <pre>
+     * {@code
      * PropertyState property = builder.getProperty(name);
      * if (property != null && property.getType() == Type.STRING) {
      *     return property.getValue(Type.STRING);
      * } else {
      *     return null;
      * }
+     * }
      * </pre>
      *
      * @param name property name
@@ -343,12 +347,14 @@ public interface NodeBuilder {
      * Returns the name value of the named property. The implementation
      * is equivalent to the following code, but may be optimized.
      * <pre>
+     * {@code
      * PropertyState property = builder.getProperty(name);
      * if (property != null && property.getType() == Type.NAME) {
      *     return property.getValue(Type.NAME);
      * } else {
      *     return null;
      * }
+     * }
      * </pre>
      *
      * @param name property name
@@ -361,12 +367,14 @@ public interface NodeBuilder {
      * Returns the name values of the named property. The implementation
      * is equivalent to the following code, but may be optimized.
      * <pre>
+     * {@code
      * PropertyState property = builder.getProperty(name);
      * if (property != null && property.getType() == Type.NAMES) {
      *     return property.getValue(Type.NAMES);
      * } else {
      *     return Collections.emptyList();
      * }
+     * }
      * </pre>
      *
      * @param name property name

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/state/NodeState.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/state/NodeState.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/state/NodeState.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/state/NodeState.java
 Fri Jan  1 15:49:06 2016
@@ -159,10 +159,12 @@ public interface NodeState {
      * Returns the boolean value of the named property. The implementation
      * is equivalent to the following code, but may be optimized.
      * <pre>
+        * {@code
      * PropertyState property = state.getProperty(name);
      * return property != null
      *     && property.getType() == Type.BOOLEAN
      *     && property.getValue(Type.BOOLEAN);
+     * }
      * </pre>
      *
      * @param name property name
@@ -174,12 +176,14 @@ public interface NodeState {
      * Returns the long value of the named property. The implementation
      * is equivalent to the following code, but may be optimized.
      * <pre>
+     * {@code
      * PropertyState property = state.getProperty(name);
      * if (property != null && property.getType() == Type.LONG) {
      *     return property.getValue(Type.LONG);
      * } else {
      *     return 0;
      * }
+     * }
      * </pre>
      *
      * @param name property name
@@ -192,12 +196,14 @@ public interface NodeState {
      * Returns the string value of the named property. The implementation
      * is equivalent to the following code, but may be optimized.
      * <pre>
+     * {@code
      * PropertyState property = state.getProperty(name);
      * if (property != null && property.getType() == Type.STRING) {
      *     return property.getValue(Type.STRING);
      * } else {
      *     return null;
      * }
+     * }
      * </pre>
      *
      * @param name property name
@@ -210,12 +216,14 @@ public interface NodeState {
      * Returns the string values of the named property. The implementation
      * is equivalent to the following code, but may be optimized.
      * <pre>
+     * {@code
      * PropertyState property = state.getProperty(name);
      * if (property != null && property.getType() == Type.STRINGS) {
      *     return property.getValue(Type.STRINGS);
      * } else {
      *     return Collections.emptyList();
      * }
+     * }
      * </pre>
      *
      * @param name property name
@@ -228,12 +236,14 @@ public interface NodeState {
      * Returns the name value of the named property. The implementation
      * is equivalent to the following code, but may be optimized.
      * <pre>
+     * {@code
      * PropertyState property = state.getProperty(name);
      * if (property != null && property.getType() == Type.NAME) {
      *     return property.getValue(Type.NAME);
      * } else {
      *     return null;
      * }
+     * }
      * </pre>
      *
      * @param name property name
@@ -246,12 +256,14 @@ public interface NodeState {
      * Returns the name values of the named property. The implementation
      * is equivalent to the following code, but may be optimized.
      * <pre>
+     * {@code
      * PropertyState property = state.getProperty(name);
      * if (property != null && property.getType() == Type.NAMES) {
      *     return property.getValue(Type.NAMES);
      * } else {
      *     return Collections.emptyList();
      * }
+     * }
      * </pre>
      *
      * @param name property name

Modified: 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/xml/ReferenceChangeTracker.java
URL: 
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/xml/ReferenceChangeTracker.java?rev=1722499&r1=1722498&r2=1722499&view=diff
==============================================================================
--- 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/xml/ReferenceChangeTracker.java
 (original)
+++ 
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/spi/xml/ReferenceChangeTracker.java
 Fri Jan  1 15:49:06 2016
@@ -56,7 +56,7 @@ public class ReferenceChangeTracker {
 
     /**
      * Store the given id mapping for later lookup using
-     * {@code }{@link #get(String)}</code>.
+     * {@link #get(String)}.
      *
      * @param oldUUID old node id
      * @param newUUID new node id
@@ -75,7 +75,7 @@ public class ReferenceChangeTracker {
 
     /**
      * Store the given reference property for later retrieval using
-     * {@code }{@link #getProcessedReferences()}</code>.
+     * {@link #getProcessedReferences()}.
      *
      * @param refProp reference property
      */
@@ -103,4 +103,4 @@ public class ReferenceChangeTracker {
     public boolean removeReferences(List<Object> processedReferences) {
         return references.removeAll(processedReferences);
     }
-}
\ No newline at end of file
+}


Reply via email to