Author: steveh
Date: Wed May 11 15:13:21 2005
New Revision: 169703
URL: http://svn.apache.org/viewcvs?rev=169703&view=rev
Log:
Fix for BEEHIVE-664: errors in glossary docs
Modified:
incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/glossary.xml
Modified:
incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/glossary.xml
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/glossary.xml?rev=169703&r1=169702&r2=169703&view=diff
==============================================================================
---
incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/glossary.xml
(original)
+++
incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/glossary.xml
Wed May 11 15:13:21 2005
@@ -24,10 +24,11 @@
</dl>
<dl id="databinding">
<dt><strong>Databinding</strong></dt>
- <dd>The process of databinding connects JSP
pages to data objects. The data objects
+ <dd>Databinding connects JSP pages to data
objects. The data objects
can be located in various places
throughout the web application:
in the <a
href="#controller_file">Controller file</a>, in the
- standard JSP objects, etc. A list of
</dd>
+ standard JSP objects, etc. A list of
the different databinding expressions
+ can be found at <a
href="site:pageflow_databinding">Databinding</a>.</dd>
</dl>
<dl id="formbean">
<dt><strong>Form Bean</strong></dt>
@@ -35,12 +36,13 @@
<netui:form> tag. Form Beans follow
ordinary Java Bean syntax: each
Form Bean is a class consisting of any
number of members, each member
having a setter and a getter method
- associated with it. Form Beans must extend the class
- org.apache.beehive.netui.pageflow.FormData. The Sample
Form Bean below
+ associated with it. Form Beans should also extend
+ <code>java.io.Serializable</code> in order to
facilitate
+ persistence of Form Bean instances. The Sample Form
Bean below
has two members, each member has a getter and setter
method associated
with it.</p>
<source><![CDATA[
- public static class ProfileFormBean
+ public static class ProfileFormBean extends java.io.Serializable
{
private int age;