husted 2003/12/30 17:06:53 Modified: src/share/org/apache/struts/plugins ModuleConfigVerifier.java Log: Javadoc updates only, no code changes. Revision Changes Path 1.4 +11 -22 jakarta-struts/src/share/org/apache/struts/plugins/ModuleConfigVerifier.java Index: ModuleConfigVerifier.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/plugins/ModuleConfigVerifier.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ModuleConfigVerifier.java 30 Dec 2003 16:28:35 -0000 1.3 +++ ModuleConfigVerifier.java 31 Dec 2003 01:06:53 -0000 1.4 @@ -79,11 +79,11 @@ * for this application module as is practical. Based on the setting of the * <code>fatal</code> property (which defaults to <code>true</code>), the * detection of any such errors will cause a <code>ServletException</code> - * to be thrown from the <code>init()</code> method, which will ultimately + * to be thrown from the <code>init</code> method, which will ultimately * cause the initialization of your Struts controller servlet to fail.</p> * * <p>Under all circumstances, errors that are detected will be logged via - * calls to <code>ServletContext.log()</code>.</p> + * calls to <code>ServletContext.log</code>.</p> * * @author Craig R. McClanahan * @version $Revision$ $Date$ @@ -153,18 +153,7 @@ } - /** - * <p>Receive notification that the specified module is being - * started up.</p> - * - * @param servlet ActionServlet that is managing all the - * modules in this web application - * @param config ModuleConfig for the module with which - * this plug-in is associated - * - * @exception ServletException if this <code>PlugIn</code> cannot - * be successfully initialized - */ + // See interface for Javadoc. public void init(ActionServlet servlet, ModuleConfig config) throws ServletException { @@ -238,7 +227,7 @@ /** * <p>Return <code>true</code> if information returned by - * <code>config.getActionMappingClass()</code> is all valid; + * <code>config.getActionMappingClass</code> is all valid; * otherwise, log error messages and return <code>false</code>.</p> */ protected boolean verifyActionMappingClass() { @@ -263,7 +252,7 @@ /** * <p>Return <code>true</code> if information returned by - * <code>config.findForwardConfigs() is all valid; + * <code>config.findForwardConfigs</code> is all valid; * otherwise, log error messages and return <code>false</code>.</p> */ protected boolean verifyForwardConfigs() { @@ -290,7 +279,7 @@ /** * <p>Return <code>true</code> if information returned by - * <code>config.findMessageResourcesConfigs() is all valid; + * <code>config.findMessageResourcesConfigs</code> is all valid; * otherwise, log error messages and return <code>false</code>.</p> */ protected boolean verifyMessageResourcesConfigs() { @@ -326,7 +315,7 @@ /** * <p>Return <code>true</code> if information returned by - * <code>config.findPluginConfigs() is all valid; + * <code>config.findPluginConfigs</code> is all valid; * otherwise, log error messages and return <code>false</code>.</p> */ protected boolean verifyPlugInConfigs() {
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]