--- old/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/staxex/NamespaceContextEx.java 2015-09-19 13:15:24.448739772 +0300 +++ new/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/staxex/NamespaceContextEx.java 2015-09-19 13:15:24.312739097 +0300 @@ -42,19 +42,19 @@ *

* This method enumerates all the active in-scope namespace bindings. * This does not include implicit bindings, such as - * "xml"->"http://www.w3.org/XML/1998/namespace" - * or ""->"" (the implicit default namespace URI.) + * {@code "xml"->"http://www.w3.org/XML/1998/namespace"} + * or {@code ""->""} (the implicit default namespace URI.) * *

* The returned iterator may not include the same prefix more than once. - * For example, the returned iterator may only contain f=ns2 + * For example, the returned iterator may only contain {@code f=ns2} * if the document is as follows and this method is used at the bar element. * - *


+     * <pre>{@code
      * <foo xmlns:f='ns1'>
      *   <bar xmlns:f='ns2'>
      *     ...
-     * 
+ * } * *

* The iteration may be done in no particular order.