Author: sabob
Date: Wed Mar 31 07:58:28 2010
New Revision: 929425
URL: http://svn.apache.org/viewvc?rev=929425&view=rev
Log:
javadoc
Modified:
click/trunk/click/framework/src/org/apache/click/util/Bindable.java
Modified: click/trunk/click/framework/src/org/apache/click/util/Bindable.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/util/Bindable.java?rev=929425&r1=929424&r2=929425&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/util/Bindable.java (original)
+++ click/trunk/click/framework/src/org/apache/click/util/Bindable.java Wed Mar 31 07:58:28
2010
@@ -39,8 +39,9 @@ import java.lang.annotation.Target;
* policy.
*
* <h3>Configuration</h3>
- * By default Click only binds public page fields. In order for Click to
- * recognize the @Bindable annotation you need to set the autobinding
+ * By default "<tt>autobinding</tt>" will bind both public page
+ * fields and fields annotated with the @Bindable annotations. If you do not
+ * want <tt>"public"</tt> fields to be bindable you can set the autobinding
* attribute to "<tt>annotation</tt>" in your <tt>click.xml</tt>
config file:
*
* <pre class="prettyprint">
@@ -50,8 +51,8 @@ import java.lang.annotation.Target;
*
* <h3>Bindable Example</h3>
*
- * With the above configuration in place, Click will bind all page fields
- * annotated with the @Bindable annotation:
+ * Below is an example using of page fields annotated with the @Bindable
+ * annotation:
*
* <pre class="prettyprint">
* public class BindableDemo extends Page {
|