Author: dashorst
Date: Thu Sep  6 14:36:49 2007
New Revision: 573387

URL: http://svn.apache.org/viewvc?rev=573387&view=rev
Log:
Fixed typo

Modified:
    wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java

Modified: 
wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java
URL: 
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java?rev=573387&r1=573386&r2=573387&view=diff
==============================================================================
--- wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java 
(original)
+++ wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/Component.java 
Thu Sep  6 14:36:49 2007
@@ -111,9 +111,9 @@
  * 
  * <li><b>Rendering </b>- A markup response is generated by the Component via
  * [EMAIL PROTECTED] Component#render()}, which calls subclass implementation 
code contained in
- * [EMAIL PROTECTED] 
Component#onRender(org.apache.wicket.markup.MarkupStream)}.
- * Once this phase begins, a Component becomes immutable. Attempts to
- * alter the Component will result in a WicketRuntimeException.
+ * [EMAIL PROTECTED] 
Component#onRender(org.apache.wicket.markup.MarkupStream)}. Once this phase 
begins, a
+ * Component becomes immutable. Attempts to alter the Component will result in 
a
+ * WicketRuntimeException.
  * 
  * <li><b>onEndRequest </b>() - The [EMAIL PROTECTED] 
Component#onEndRequest()} method is called.
  * </ul>
@@ -171,11 +171,11 @@
  * getApplicationPages is equivalent to getApplication().getPages().
  * 
  * <li><b>Feedback Messages </b>- The [EMAIL PROTECTED] 
Component#debug(String)},
- * [EMAIL PROTECTED] Component#info(String)}, [EMAIL PROTECTED] 
Component#warn(String)}, [EMAIL PROTECTED] 
Component#error(java.io.Serializable)}
- * and [EMAIL PROTECTED] Component#fatal(String)} methods associate feedback 
messages with a Component. It is
- * generally not necessary to use these methods directly since Wicket 
validators automatically
- * register feedback messages on Components. Any feedback message for a given 
Component can be
- * retrieved with [EMAIL PROTECTED] Component#getFeedbackMessage}.
+ * [EMAIL PROTECTED] Component#info(String)}, [EMAIL PROTECTED] 
Component#warn(String)},
+ * [EMAIL PROTECTED] Component#error(java.io.Serializable)} and [EMAIL 
PROTECTED] Component#fatal(String)} methods
+ * associate feedback messages with a Component. It is generally not necessary 
to use these methods
+ * directly since Wicket validators automatically register feedback messages 
on Components. Any
+ * feedback message for a given Component can be retrieved with [EMAIL 
PROTECTED] Component#getFeedbackMessage}.
  * 
  * <li><b>Page Factory </b>- It is possible to change the way that Pages are 
constructed by
  * overriding the [EMAIL PROTECTED] Component#getPageFactory()} method, 
returning your own implementation of
@@ -2709,7 +2709,7 @@
         * parameters. Since the URL which is returned contains all information 
necessary to instantiate
         * and render the page, it can be stored in a user's browser as a 
stable bookmark.
         * 
-        * @see RequestCycle#urlFor(IPageMap, Class, PageParameters) 
+        * @see RequestCycle#urlFor(IPageMap, Class, PageParameters)
         * 
         * @param pageMap
         *            Page map to use
@@ -2950,7 +2950,7 @@
                {
                        model.detach();
                }
-               // also detach the wrapped model of a component assignet wrap 
(not
+               // also detach the wrapped model of a component assigned wrap 
(not
                // inherited)
                if (model instanceof IWrapModel && 
!getFlag(FLAG_INHERITABLE_MODEL))
                {


Reply via email to