You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by aa...@apache.org on 2013/11/08 20:30:37 UTC

svn commit: r1540157 - in /click/trunk/click: build/build.xml framework/src/org/apache/click/ClickServlet.java framework/src/org/apache/click/util/MessagesMap.java

Author: aadrian
Date: Fri Nov  8 19:30:36 2013
New Revision: 1540157

URL: http://svn.apache.org/r1540157
Log:
fix javadoc warnings

Modified:
    click/trunk/click/build/build.xml
    click/trunk/click/framework/src/org/apache/click/ClickServlet.java
    click/trunk/click/framework/src/org/apache/click/util/MessagesMap.java

Modified: click/trunk/click/build/build.xml
URL: http://svn.apache.org/viewvc/click/trunk/click/build/build.xml?rev=1540157&r1=1540156&r2=1540157&view=diff
==============================================================================
--- click/trunk/click/build/build.xml (original)
+++ click/trunk/click/build/build.xml Fri Nov  8 19:30:36 2013
@@ -643,7 +643,8 @@ Environment:
 Please ensure you have configured build.properties</echo>
    </target> 
 
-   <target name="javadoc" description="create Javadoc HTML files" depends="prepare-hibernate">
+   <target name="javadoc" description="create Javadoc HTML files" depends="prepare-hibernate,
+                                                                  build-framework,build-extras,build-mock">
       <!-- Framework -->
       <delete quiet="false" failonerror="false">
          <fileset dir="documentation/docs/click-api" includes="**/*"/>
@@ -879,7 +880,7 @@ Please ensure you have configured build.
             <link href="http://java.sun.com/j2ee/sdk_1.3/techdocs/api/"/>
             <link href="http://jakarta.apache.org/commons/fileupload/apidocs/"/>
             <link href="http://click.apache.org/docs/click-api/"/>
-            <link href="http://docs.jboss.org/hibernate/stable/core/api/"/>
+            <link href="http://docs.jboss.org/hibernate/orm/3.2/api/"/>
             <link href="http://static.springframework.org/spring/docs/2.5.x/api/"/>
          </javadoc>
 

Modified: click/trunk/click/framework/src/org/apache/click/ClickServlet.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/ClickServlet.java?rev=1540157&r1=1540156&r2=1540157&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/ClickServlet.java (original)
+++ click/trunk/click/framework/src/org/apache/click/ClickServlet.java Fri Nov  8 19:30:36 2013
@@ -1310,7 +1310,7 @@ public class ClickServlet extends HttpSe
      * include string, numbers and booleans.
      * <p/>
      * Type conversion is performed using the <tt>TypeConverter</tt>
-     * returned by the {@link #getTypeConverter()} method.
+     * of the <tt>PropertyService</tt>.
      *
      * @param page the page whose fields are to be processed
      */

Modified: click/trunk/click/framework/src/org/apache/click/util/MessagesMap.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/util/MessagesMap.java?rev=1540157&r1=1540156&r2=1540157&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/util/MessagesMap.java (original)
+++ click/trunk/click/framework/src/org/apache/click/util/MessagesMap.java Fri Nov  8 19:30:36 2013
@@ -292,9 +292,9 @@ public class MessagesMap implements Map<
 
     /**
      * This method initializes and populates the internal{@link #messages} map
-     * and {@link #MESSAGES_CACHE} if it is not already initialized.
+     * and cache {@link #getMessagesCache()} if it is not already initialized.
      * <p/>
-     * <b>Please Note:</b> populating {@link #MESSAGES_CACHE} is not thread safe
+     * <b>Please Note:</b> populating the cache {@link #getMessagesCache()} is not thread safe
      * and access to the cache must be properly synchronized.
      */
     protected void ensureInitialized() {