You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2009/06/13 15:58:38 UTC

svn commit: r784393 - in /incubator/click/trunk/click: examples/src/org/apache/click/examples/quartz/ framework/src/org/apache/click/control/ framework/src/org/apache/click/element/

Author: sabob
Date: Sat Jun 13 13:58:38 2009
New Revision: 784393

URL: http://svn.apache.org/viewvc?rev=784393&view=rev
Log:
fix javadoc warnings

Modified:
    incubator/click/trunk/click/examples/src/org/apache/click/examples/quartz/ExampleJob.java
    incubator/click/trunk/click/framework/src/org/apache/click/control/package.html
    incubator/click/trunk/click/framework/src/org/apache/click/element/CssStyle.java
    incubator/click/trunk/click/framework/src/org/apache/click/element/JsScript.java

Modified: incubator/click/trunk/click/examples/src/org/apache/click/examples/quartz/ExampleJob.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/examples/src/org/apache/click/examples/quartz/ExampleJob.java?rev=784393&r1=784392&r2=784393&view=diff
==============================================================================
--- incubator/click/trunk/click/examples/src/org/apache/click/examples/quartz/ExampleJob.java (original)
+++ incubator/click/trunk/click/examples/src/org/apache/click/examples/quartz/ExampleJob.java Sat Jun 13 13:58:38 2009
@@ -31,7 +31,7 @@
 public class ExampleJob implements Job {
 
     /**
-     * {@link org.quartz.Job#execute(JobExecutionContext)
+     * {@link org.quartz.Job#execute(JobExecutionContext)}
      */
     public void execute(JobExecutionContext context) throws JobExecutionException {
         System.out.println("Hello World from " + getClass().getSimpleName() + "@" + hashCode());

Modified: incubator/click/trunk/click/framework/src/org/apache/click/control/package.html
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/framework/src/org/apache/click/control/package.html?rev=784393&r1=784392&r2=784393&view=diff
==============================================================================
--- incubator/click/trunk/click/framework/src/org/apache/click/control/package.html (original)
+++ incubator/click/trunk/click/framework/src/org/apache/click/control/package.html Sat Jun 13 13:58:38 2009
@@ -45,10 +45,10 @@
 public class ActionDemo extends Page {
 
     // Uses listener style 1
-    @Bindable public ActionLink link = new ActionLink();
+    @Bindable public ActionLink link = new ActionLink();
 
     // Uses listener style 2
-    @Bindable public ActionButton button = new ActionButton();
+    @Bindable public ActionButton button = new ActionButton();
 
     public ActionDemo() {
 

Modified: incubator/click/trunk/click/framework/src/org/apache/click/element/CssStyle.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/framework/src/org/apache/click/element/CssStyle.java?rev=784393&r1=784392&r2=784393&view=diff
==============================================================================
--- incubator/click/trunk/click/framework/src/org/apache/click/element/CssStyle.java (original)
+++ incubator/click/trunk/click/framework/src/org/apache/click/element/CssStyle.java Sat Jun 13 13:58:38 2009
@@ -189,7 +189,7 @@
      * <p/>
      * When the CssStyle is rendered the template and model will be merged and
      * the result will be rendered together with any CssStyle
-     * {@link #setContent(org.apache.click.util.HtmlStringBuffer) content}.
+     * {@link #setContent(java.lang.String) content}.
      * <p/>
      *
      * For example:
@@ -285,7 +285,7 @@
      * <p/>
      * If the {@link #template} property is set, the template and {@link #model}
      * will be merged and the result will be rendered together with any CssStyle
-     * {@link #setContent(org.apache.click.util.HtmlStringBuffer) content}.
+     * {@link #setContent(java.lang.String) content}.
      *
      * @param template the path of the template to render
      */
@@ -310,7 +310,7 @@
      * <p/>
      * If the {@link #template} property is set, the template and {@link #model}
      * will be merged and the result will be rendered together with any CssStyle
-     * {@link #setContent(org.apache.click.util.HtmlStringBuffer) content}.
+     * {@link #setContent(java.lang.String) content}.
      *
      * @param model the model of the template to render
      */
@@ -398,14 +398,14 @@
     // ------------------------------------------------------ Protected Methods
 
     /**
-     * Render the CssStyle {@link #setContent(org.apache.click.util.HtmlStringBuffer) content}
+     * Render the CssStyle {@link #setContent(java.lang.String) content}
      * to the specified buffer.
      * <p/>
      * <b>Please note:</b> if the {@link #setTemplate(java.lang.String) template}
      * property is set, this method will merge the {@link #setTemplate(java.lang.String) template}
      * and {@link #setModel(java.util.Map) model} and the result will be
      * rendered, together with the CssStyle
-     * {@link #setContent(org.apache.click.util.HtmlStringBuffer) content},
+     * {@link #setContent(java.lang.String) content},
      * to the specified buffer.
      *
      * @param buffer the buffer to append the output to

Modified: incubator/click/trunk/click/framework/src/org/apache/click/element/JsScript.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/framework/src/org/apache/click/element/JsScript.java?rev=784393&r1=784392&r2=784393&view=diff
==============================================================================
--- incubator/click/trunk/click/framework/src/org/apache/click/element/JsScript.java (original)
+++ incubator/click/trunk/click/framework/src/org/apache/click/element/JsScript.java Sat Jun 13 13:58:38 2009
@@ -195,7 +195,7 @@
      * <p/>
      * When the JsScript is rendered the template and model will be merged and
      * the result will be rendered together with any JsScript
-     * {@link #setContent(org.apache.click.util.HtmlStringBuffer) content}.
+     * {@link #setContent(java.lang.String) content}.
      * <p/>
      *
      * For example:
@@ -328,7 +328,7 @@
      * <p/>
      * If the {@link #template} property is set, the template and {@link #model}
      * will be merged and the result will be rendered together with any JsScript
-     * {@link #setContent(org.apache.click.util.HtmlStringBuffer) content}.
+     * {@link #setContent(java.lang.String) content}.
      *
      * @param template the path of the template to render
      */
@@ -353,7 +353,7 @@
      * <p/>
      * If the {@link #template} property is set, the template and {@link #model}
      * will be merged and the result will be rendered together with any JsScript
-     * {@link #setContent(org.apache.click.util.HtmlStringBuffer) content}.
+     * {@link #setContent(java.lang.String) content}.
      *
      * @param model the model of the template to render
      */
@@ -456,14 +456,14 @@
     // ------------------------------------------------------ Protected Methods
 
     /**
-     * Render the JsScript {@link #setContent(org.apache.click.util.HtmlStringBuffer) content}
+     * Render the JsScript {@link #setContent(java.lang.String) content}
      * to the specified buffer.
      * <p/>
      * <b>Please note:</b> if the {@link #setTemplate(java.lang.String) template}
      * property is set, this method will merge the {@link #setTemplate(java.lang.String) template}
      * and {@link #setModel(java.util.Map) model} and the result will be
      * rendered, together with the JsScript
-     * {@link #setContent(org.apache.click.util.HtmlStringBuffer) content},
+     * {@link #setContent(java.lang.String) content},
      * to the specified buffer.
      *
      * @param buffer the buffer to append the output to