< prev index next >

src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/privateutil/PolicyUtils.java

Print this page

        

@@ -399,22 +399,22 @@
          * Locates and incrementally instantiates the available providers of a
          * given service using the given class loader.
          * <p/>
          * <p> This method transforms the name of the given service class into a
          * provider-configuration filename as described above and then uses the
-         * <tt>getResources</tt> method of the given class loader to find all
+         * {@code getResources} method of the given class loader to find all
          * available files with that name.  These files are then read and parsed to
          * produce a list of provider-class names. Eventually each provider class is
          * instantiated and array of those instances is returned.
          * <p/>
          * <p> Because it is possible for extensions to be installed into a running
          * Java virtual machine, this method may return different results each time
          * it is invoked. <p>
          *
          * @param serviceClass The service's abstract service class. Must not be {@code null}.
          * @param loader  The class loader to be used to load provider-configuration files
-         *                and instantiate provider classes, or <tt>null</tt> if the system
+         *                and instantiate provider classes, or {@code null} if the system
          *                class loader (or, failing that the bootstrap class loader) is to
          *                be used
          * @throws NullPointerException in case {@code service} input parameter is {@code null}.
          * @throws ServiceConfigurationError If a provider-configuration file violates the specified format
          *                                   or names a provider class that cannot be found and instantiated
< prev index next >