--- old/src/java.naming/share/classes/javax/naming/directory/SearchControls.java 2015-08-04 13:14:40.964900537 +0300 +++ new/src/java.naming/share/classes/javax/naming/directory/SearchControls.java 2015-08-04 13:14:40.520900527 +0300 @@ -54,7 +54,7 @@ * It contains zero element if the named object does not satisfy * the search filter specified in search(). *

- * The value of this constant is 0. + * The value of this constant is {@code 0}. */ public final static int OBJECT_SCOPE = 0; @@ -68,7 +68,7 @@ * The names of elements in the NamingEnumeration are atomic names * relative to the named context. *

- * The value of this constant is 1. + * The value of this constant is {@code 1}. */ public final static int ONELEVEL_SCOPE = 1; /** @@ -90,14 +90,14 @@ * included in the enumeration with the empty string as * its name. *

- * The value of this constant is 2. + * The value of this constant is {@code 2}. */ public final static int SUBTREE_SCOPE = 2; /** * Contains the scope with which to apply the search. One of - * ONELEVEL_SCOPE, OBJECT_SCOPE, or - * SUBTREE_SCOPE. + * {@code ONELEVEL_SCOPE}, {@code OBJECT_SCOPE}, or + * {@code SUBTREE_SCOPE}. * @serial */ private int searchScope; @@ -117,7 +117,7 @@ private boolean derefLink; /** - * Indicates whether object is returned in SearchResult. + * Indicates whether object is returned in {@code SearchResult}. * @serial */ private boolean returnObj; @@ -130,7 +130,7 @@ /** * Contains the list of attributes to be returned in - * SearchResult for each matching entry of search. null + * {@code SearchResult} for each matching entry of search. {@code null} * indicates that all attributes are to be returned. * @serial */