Javadoc for the context API classloader
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Wed, 26 Jun 2013 17:21:10 +0200
branchclassloader
changeset 16710005a498972
parent 166 a3c7866bfb61
child 168 6d6817daf0a7
Javadoc for the context API
context/pom.xml
context/src/main/java/net/java/html/BrwsrCtx.java
     1.1 --- a/context/pom.xml	Wed Jun 26 17:17:42 2013 +0200
     1.2 +++ b/context/pom.xml	Wed Jun 26 17:21:10 2013 +0200
     1.3 @@ -15,6 +15,18 @@
     1.4    <properties>
     1.5      <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     1.6    </properties>
     1.7 +  <build>
     1.8 +      <plugins>
     1.9 +          <plugin>
    1.10 +              <groupId>org.apache.maven.plugins</groupId>
    1.11 +              <artifactId>maven-javadoc-plugin</artifactId>
    1.12 +              <configuration>
    1.13 +                  <subpackages>net.java.html</subpackages>
    1.14 +                  <skip>false</skip>
    1.15 +              </configuration>
    1.16 +          </plugin>
    1.17 +      </plugins>
    1.18 +  </build>
    1.19    <dependencies>
    1.20    </dependencies>
    1.21  </project>
     2.1 --- a/context/src/main/java/net/java/html/BrwsrCtx.java	Wed Jun 26 17:17:42 2013 +0200
     2.2 +++ b/context/src/main/java/net/java/html/BrwsrCtx.java	Wed Jun 26 17:21:10 2013 +0200
     2.3 @@ -25,9 +25,10 @@
     2.4  import org.apidesign.html.context.impl.CtxImpl;
     2.5  import org.apidesign.html.context.spi.Contexts;
     2.6  
     2.7 -/** Represents context where the {@link Model} and other objects
     2.8 +/** Represents context where the <code>net.java.html.json.Model</code>
     2.9 + * and other objects
    2.10   * operate in. The context is usually a particular HTML page in a browser.
    2.11 - * The context is also associated with the actual HTML rendering technology
    2.12 + * The context is also associated with the actual HTML technology
    2.13   * in the HTML page - there is likely to be different context for 
    2.14   * <a href="http://knockoutjs.com">knockout.js</a> and different one
    2.15   * for <a href="http://angularjs.org">angular</a>.