context/src/main/java/org/apidesign/html/context/spi/Contexts.java
changeset 534 15907d1499fb
parent 365 5c93ad8c7a15
child 538 3459b847088f
     1.1 --- a/context/src/main/java/org/apidesign/html/context/spi/Contexts.java	Mon Dec 16 17:39:56 2013 +0100
     1.2 +++ b/context/src/main/java/org/apidesign/html/context/spi/Contexts.java	Thu Feb 06 10:52:45 2014 +0100
     1.3 @@ -54,7 +54,7 @@
     1.4      }
     1.5  
     1.6      /** Creates new, empty builder for creation of {@link BrwsrCtx}. At the
     1.7 -     * end call the {@link #build()} method to generate the context.
     1.8 +     * end call the {@link Builder#build()} method to generate the context.
     1.9       *
    1.10       * @return new instance of the builder
    1.11       */
    1.12 @@ -68,15 +68,15 @@
    1.13       * @param context the context to seek in 
    1.14       *    (previously filled with ({@link Builder#register(java.lang.Class, java.lang.Object, int)})
    1.15       * @param technology class that identifies the technology
    1.16 -     * @return 
    1.17 +     * @return the technology in the context or <code>null</code>
    1.18       */
    1.19      public static <Tech> Tech find(BrwsrCtx context, Class<Tech> technology) {
    1.20          return CtxImpl.find(context, technology);
    1.21      }
    1.22  
    1.23      /** Implementors of various HTML technologies should
    1.24 -     * register their implementation via {@link ServiceProvider} so
    1.25 -     * {@link ServiceProvider} can find them, when their JARs are included
    1.26 +     * register their implementation via {@link java.util.ServiceProvider} so
    1.27 +     * {@link java.util.ServiceProvider} can find them, when their JARs are included
    1.28       * on the classpath of the running application.
    1.29       *
    1.30       * @author Jaroslav Tulach <jaroslav.tulach@apidesign.org>