husted 2003/11/26 21:38:54 Modified: src/share/org/apache/struts/action ActionServlet.java src/share/org/apache/struts/plugins DigestingPlugIn.java src/share/org/apache/struts/taglib/bean IncludeTag.java src/share/org/apache/struts/tiles ComponentDefinition.java TilesUtil.java TilesUtilImpl.java src/share/org/apache/struts/tiles/xmlDefinition XmlAttribute.java Log: JavaDoc fixes. Revision Changes Path 1.170 +5 -5 jakarta-struts/src/share/org/apache/struts/action/ActionServlet.java Index: ActionServlet.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/action/ActionServlet.java,v retrieving revision 1.169 retrieving revision 1.170 diff -u -r1.169 -r1.170 --- ActionServlet.java 29 Sep 2003 04:35:26 -0000 1.169 +++ ActionServlet.java 27 Nov 2003 05:38:53 -0000 1.170 @@ -965,7 +965,7 @@ /** * Add any custom RuleSet instances to configDigester that have - * been specified in the <code>rulesets</code> init. parameter. + * been specified in the <code>rulesets</code> init parameter. * @throws ServletException */ private void addRuleSets() throws ServletException { 1.6 +7 -6 jakarta-struts/src/share/org/apache/struts/plugins/DigestingPlugIn.java Index: DigestingPlugIn.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/plugins/DigestingPlugIn.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- DigestingPlugIn.java 14 Aug 2003 03:19:43 -0000 1.5 +++ DigestingPlugIn.java 27 Nov 2003 05:38:54 -0000 1.6 @@ -87,7 +87,7 @@ * @author Joe Germuska * @author David Graham * @version $Revision$ - * @see org.apache.struts.PlugIn + * @see org.apache.struts.action.PlugIn * @since Struts 1.2 */ public class DigestingPlugIn implements PlugIn { @@ -478,7 +478,8 @@ /** * <p>If set to <code>true</code>, this PlugIn will be pushed onto - * the Digester stack before <code>digester.parse()</code> is called.</p> + * the Digester stack before the digester <code>parse</code> method is + * called.</p> * <p>Defaults to <code>false</code></p> * @param push */ 1.25 +3 -3 jakarta-struts/src/share/org/apache/struts/taglib/bean/IncludeTag.java Index: IncludeTag.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/bean/IncludeTag.java,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- IncludeTag.java 28 Aug 2003 17:37:04 -0000 1.24 +++ IncludeTag.java 27 Nov 2003 05:38:54 -0000 1.25 @@ -282,7 +282,7 @@ * @param conn * @param urlString * @param request - * @ since Struts 1.2.0 + * @since Struts 1.2.0 */ protected void addCookie(URLConnection conn, String urlString, HttpServletRequest request) { if ((conn instanceof HttpURLConnection) 1.9 +4 -4 jakarta-struts/src/share/org/apache/struts/tiles/ComponentDefinition.java Index: ComponentDefinition.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/tiles/ComponentDefinition.java,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ComponentDefinition.java 9 Jul 2003 02:37:20 -0000 1.8 +++ ComponentDefinition.java 27 Nov 2003 05:38:54 -0000 1.9 @@ -213,7 +213,7 @@ /** * Sets the value of the path property. * - * @param aPath the new value of the path property + * @param page the new value of the path property */ public void setPage(String page) { path = page; 1.10 +4 -6 jakarta-struts/src/share/org/apache/struts/tiles/TilesUtil.java Index: TilesUtil.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/tiles/TilesUtil.java,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- TilesUtil.java 9 Jul 2003 00:14:00 -0000 1.9 +++ TilesUtil.java 27 Nov 2003 05:38:54 -0000 1.10 @@ -171,9 +171,7 @@ * This method is used by the Tiles package when an include is required. * The Tiles package can use indifferently any form of this method. * @param uri Uri or Definition name to forward. - * @param request Current page request. - * @param response Current page response. - * @param servletContext Current servlet context. + * @param pageContext Current page context. */ public static void doInclude(String uri, PageContext pageContext) throws IOException, ServletException { 1.6 +4 -6 jakarta-struts/src/share/org/apache/struts/tiles/TilesUtilImpl.java Index: TilesUtilImpl.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/tiles/TilesUtilImpl.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- TilesUtilImpl.java 9 Jul 2003 00:14:00 -0000 1.5 +++ TilesUtilImpl.java 27 Nov 2003 05:38:54 -0000 1.6 @@ -134,9 +134,7 @@ * This method is used by the Tiles package when an include is required. * The Tiles package can use indifferently any form of this method. * @param uri Uri or Definition name to forward. - * @param request Current page request. - * @param response Current page response. - * @param servletContext Current servlet context. + * @param pageContext Current page context. */ public static void doInclude(String uri, PageContext pageContext) throws IOException, ServletException { 1.5 +7 -7 jakarta-struts/src/share/org/apache/struts/tiles/xmlDefinition/XmlAttribute.java Index: XmlAttribute.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/tiles/xmlDefinition/XmlAttribute.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- XmlAttribute.java 2 Jul 2003 02:16:39 -0000 1.4 +++ XmlAttribute.java 27 Nov 2003 05:38:54 -0000 1.5 @@ -131,7 +131,7 @@ /** * Sets the value of the name property. * - * @param aName the new value of the name property + * @param role the new value of the name property */ public void setRole(String role) { this.role = role; @@ -210,7 +210,7 @@ /** * Sets the value of the value property. * - * @param aValue the new value of the value property + * @param body the new value of the value property */ public void setBody(String body) { if (body.length() == 0) { @@ -223,7 +223,7 @@ /** * Sets the value of the value property. * - * @param aValue the new value of the value property + * @param value the new value of the value property */ public void setDirect(String value) { this.direct = value; @@ -232,7 +232,7 @@ /** * Sets the value of the value property. * - * @param aValue the new value of the value property + * @param value the new value of the value property */ public void setType(String value) { this.valueType = value;
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]