jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/runtime/property/SingleMapNodeProperty.java
changeset 32795 5a5710ee05a0
parent 25871 b80b84e87032
equal deleted inserted replaced
32712:f61a63b7d1e5 32795:5a5710ee05a0
   132 
   132 
   133     private Loader keyLoader;
   133     private Loader keyLoader;
   134     private Loader valueLoader;
   134     private Loader valueLoader;
   135 
   135 
   136     /**
   136     /**
   137      * Handles <items> and </items>.
   137      * Handles {@code <items>} and {@code </items>}.
   138      *
   138      *
   139      * The target will be set to a {@link Map}.
   139      * The target will be set to a {@link Map}.
   140      */
   140      */
   141     private final Loader itemsLoader = new Loader(false) {
   141     private final Loader itemsLoader = new Loader(false) {
   142 
   142 
   188             return Collections.singleton(entryTag.toQName());
   188             return Collections.singleton(entryTag.toQName());
   189         }
   189         }
   190     };
   190     };
   191 
   191 
   192     /**
   192     /**
   193      * Handles &lt;entry> and &lt;/entry>.
   193      * Handles {@code <entry>} and {@code </entry>}.
   194      *
   194      *
   195      * The target will be set to a {@link Map}.
   195      * The target will be set to a {@link Map}.
   196      */
   196      */
   197     private final Loader entryLoader = new Loader(false) {
   197     private final Loader entryLoader = new Loader(false) {
   198         @Override
   198         @Override