You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/11/28 17:59:44 UTC

svn commit: r1207444 - in /tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib: components/ mixins/

Author: hlship
Date: Mon Nov 28 16:59:43 2011
New Revision: 1207444

URL: http://svn.apache.org/viewvc?rev=1207444&view=rev
Log:
TAP5-1762: Some components do not have include a description of their parameters in their JavaDoc pages

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/TextField.java
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/TextOutput.java
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Tree.java
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/RenderClientId.java
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/RenderDisabled.java
    tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/ZoneRefresh.java

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/TextField.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/TextField.java?rev=1207444&r1=1207443&r2=1207444&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/TextField.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/TextField.java Mon Nov 28 16:59:43 2011
@@ -1,4 +1,4 @@
-// Copyright 2006, 2007, 2008 The Apache Software Foundation
+// Copyright 2006, 2007, 2008, 2011 The Apache Software Foundation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -24,6 +24,8 @@ import org.apache.tapestry5.corelib.base
  * <p/>
  * Includes the <code>size</code> attribute, if a {@link org.apache.tapestry5.beaneditor.Width} annotation is present on
  * the property bound to the value parameter.
+ *
+ * @tapestrydoc
  */
 public class TextField extends AbstractTextField
 {

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/TextOutput.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/TextOutput.java?rev=1207444&r1=1207443&r2=1207444&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/TextOutput.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/TextOutput.java Mon Nov 28 16:59:43 2011
@@ -26,6 +26,7 @@ import java.util.regex.Pattern;
  * component.  The TextArea is split into lines, and each line it output inside its own &lt;p&gt; element.
  * 
  * @see TextArea
+ * @tapestrydoc
  */
 public class TextOutput
 {

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Tree.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Tree.java?rev=1207444&r1=1207443&r2=1207444&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Tree.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Tree.java Mon Nov 28 16:59:43 2011
@@ -39,6 +39,7 @@ import java.util.List;
  * The Tree component uses special tricks to support recursive rendering of the Tree as necessary.
  *
  * @since 5.3
+ * @tapestrydoc
  */
 @SuppressWarnings(
         {"rawtypes", "unchecked", "unused"})

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/RenderClientId.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/RenderClientId.java?rev=1207444&r1=1207443&r2=1207444&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/RenderClientId.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/RenderClientId.java Mon Nov 28 16:59:43 2011
@@ -19,7 +19,7 @@ import org.apache.tapestry5.annotations.
 import org.apache.tapestry5.ClientElement;
 
 /**
- * Forces a client element to render its client id by ensuring that "getClientId" is called.
+ * Forces a client element to render its client id by ensuring that {@link org.apache.tapestry5.ClientElement#getClientId()} is called.
  * 
  * @tapestrydoc
  */

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/RenderDisabled.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/RenderDisabled.java?rev=1207444&r1=1207443&r2=1207444&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/RenderDisabled.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/RenderDisabled.java Mon Nov 28 16:59:43 2011
@@ -20,7 +20,7 @@ import org.apache.tapestry5.annotations.
 import org.apache.tapestry5.annotations.MixinAfter;
 
 /**
- * Renders an "disabled" attribute if the containing {@link Field#isDisabled() is disabled}.
+ * Renders an "disabled" attribute if the containing component {@link Field#isDisabled() is disabled}.
  * 
  * @tapestrydoc
  */

Modified: tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/ZoneRefresh.java
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/ZoneRefresh.java?rev=1207444&r1=1207443&r2=1207444&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/ZoneRefresh.java (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/mixins/ZoneRefresh.java Mon Nov 28 16:59:43 2011
@@ -36,6 +36,7 @@ import org.apache.tapestry5.services.jav
  * </p>
  * 
  * <b>Note: </b> This mixin is only meant for a @{link org.apache.tapestry5.corelib.components.Zone zone}
+ * @tapestrydoc
  */
 @Import(library = "zone-refresh.js")
 public class ZoneRefresh