Author: martinc Date: Sun Mar 13 22:00:56 2005 New Revision: 157395 URL: http://svn.apache.org/viewcvs?view=rev&rev=157395 Log: Bugzilla #33998: Fix incorrect @link syntax.
Modified: struts/core/trunk/src/share/org/apache/struts/action/ActionServlet.java struts/core/trunk/src/share/org/apache/struts/action/RequestProcessor.java struts/core/trunk/src/share/org/apache/struts/actions/LocaleAction.java Modified: struts/core/trunk/src/share/org/apache/struts/action/ActionServlet.java URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/action/ActionServlet.java?view=diff&r1=157394&r2=157395 ============================================================================== --- struts/core/trunk/src/share/org/apache/struts/action/ActionServlet.java (original) +++ struts/core/trunk/src/share/org/apache/struts/action/ActionServlet.java Sun Mar 13 22:00:56 2005 @@ -90,9 +90,9 @@ * <li>There can be <b>one</b> instance of this servlet class, * which receives and processes all requests that change the state of * a user's interaction with the application. The servlet delegates the - * handling of a request to a @link(RequestProcessor) object. This component + * handling of a request to a [EMAIL PROTECTED] RequestProcessor} object. This component * represents the "controller" component of an MVC architecture.</li> - * <li>The <code>RequestProcessor</code> selects and invokes an @link(Action) class to perform + * <li>The <code>RequestProcessor</code> selects and invokes an [EMAIL PROTECTED] Action} class to perform * the requested business logic, or delegates the response to another resource.</li> * <li>The <code>Action</code> classes can manipulate the state of the application's * interaction with the user, typically by creating or modifying JavaBeans @@ -100,7 +100,7 @@ * they need to be available). Such JavaBeans represent the "model" * component of an MVC architecture.</li> * <li>Instead of producing the next page of the user interface directly, - * <code>Action</code> classes generally return an @link(ActionForward) to indicate + * <code>Action</code> classes generally return an [EMAIL PROTECTED] ActionForward} to indicate * which resource should handle the response. If the <code>Action</code> * does not return null, the <code>RequestProcessor</code> forwards or * redirects to the specified resource (by utilizing Modified: struts/core/trunk/src/share/org/apache/struts/action/RequestProcessor.java URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/action/RequestProcessor.java?view=diff&r1=157394&r2=157395 ============================================================================== --- struts/core/trunk/src/share/org/apache/struts/action/RequestProcessor.java (original) +++ struts/core/trunk/src/share/org/apache/struts/action/RequestProcessor.java Sun Mar 13 22:00:56 2005 @@ -43,7 +43,7 @@ /** * <p><strong>RequestProcessor</strong> contains the processing logic that - * the @link(ActionServlet) performs as it receives each servlet request + * the [EMAIL PROTECTED] ActionServlet} performs as it receives each servlet request * from the container. You can customize the request processing behavior by * subclassing this class and overriding the method(s) whose behavior you are * interested in changing.</p> Modified: struts/core/trunk/src/share/org/apache/struts/actions/LocaleAction.java URL: http://svn.apache.org/viewcvs/struts/core/trunk/src/share/org/apache/struts/actions/LocaleAction.java?view=diff&r1=157394&r2=157395 ============================================================================== --- struts/core/trunk/src/share/org/apache/struts/actions/LocaleAction.java (original) +++ struts/core/trunk/src/share/org/apache/struts/actions/LocaleAction.java Sun Mar 13 22:00:56 2005 @@ -50,7 +50,7 @@ /** * <p> - * Change the user's @link(java.util.Locale) based on @link(ActionForm) + * Change the user's [EMAIL PROTECTED] java.util.Locale} based on [EMAIL PROTECTED] ActionForm} * properties. * </p> * <p> @@ -58,7 +58,7 @@ * <code>country</code> properties on the given form, constructs an * appropriate Locale object, and sets it as the Struts Locale for this * user's session. - * Any <code>ActionForm, including a @link(DynaActionForm), may be used. + * Any <code>ActionForm, including a [EMAIL PROTECTED] DynaActionForm}, may be used. * </p> * <p> * If a <code>page</code> property is also provided, then after --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]