Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 22394 invoked from network); 28 Jul 2004 03:49:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 28 Jul 2004 03:49:29 -0000 Received: (qmail 10587 invoked by uid 500); 28 Jul 2004 03:49:26 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 10484 invoked by uid 500); 28 Jul 2004 03:49:25 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 10458 invoked by uid 500); 28 Jul 2004 03:49:25 -0000 Received: (qmail 10453 invoked by uid 99); 28 Jul 2004 03:49:25 -0000 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Tue, 27 Jul 2004 20:49:25 -0700 Received: (qmail 22370 invoked by uid 1059); 28 Jul 2004 03:49:24 -0000 Date: 28 Jul 2004 03:49:24 -0000 Message-ID: <20040728034924.22368.qmail@minotaur.apache.org> From: craigmcc@apache.org To: jakarta-commons-sandbox-cvs@apache.org Subject: cvs commit: jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/web ActivityServlet.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N craigmcc 2004/07/27 20:49:24 Modified: workflow/src/java/org/apache/commons/workflow/base BaseContext.java BaseStep.java workflow/src/java/org/apache/commons/workflow/core ConstructStep.java InvokeStep.java workflow/src/java/org/apache/commons/workflow/web ActivityServlet.java Log: Clean up Javadoc and deprecation warnings. Revision Changes Path 1.17 +4 -4 jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/base/BaseContext.java Index: BaseContext.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/base/BaseContext.java,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- BaseContext.java 15 Jul 2004 18:03:46 -0000 1.16 +++ BaseContext.java 28 Jul 2004 03:49:23 -0000 1.17 @@ -151,8 +151,8 @@ /** - * Does a bean with the specified key exist in any specified scope? - * Scopes will be searched in ascending order of their identifiers, + * Return true if a bean with the specified key exist in any specified + * scope. Scopes will be searched in ascending order of their identifiers, * starting with LOCAL_SCOPE. * * @param key Key of the bean to be searched for (cannot be null) @@ -526,7 +526,7 @@ /** - *

Save the execution state (i.e. the currently assigned next step) + *

Save the execution state (ie the currently assigned next step) * of the Activity we are currently executing, and begin executing the * specified Activity. When that Activity exits (either normally * or by throwing an exception), the previous Activity will be resumed 1.6 +2 -2 jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/base/BaseStep.java Index: BaseStep.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/base/BaseStep.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- BaseStep.java 28 Feb 2004 03:35:54 -0000 1.5 +++ BaseStep.java 28 Jul 2004 03:49:24 -0000 1.6 @@ -128,7 +128,7 @@ /** * Set the Activity or Block that owns this Step. * - * @param steps The new owning Activity or Block + * @param owner The new owning Activity or Block */ public void setOwner(Owner owner) { 1.5 +2 -2 jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/core/ConstructStep.java Index: ConstructStep.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/core/ConstructStep.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ConstructStep.java 28 Feb 2004 03:35:54 -0000 1.4 +++ ConstructStep.java 28 Jul 2004 03:49:24 -0000 1.5 @@ -179,7 +179,7 @@ /** * Return a method signature useful in debugging and exception messages. * - * @param method Method name + * @param name Method name * @param types Parameter types */ protected String signature(String name, Class types[]) { 1.6 +2 -2 jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/core/InvokeStep.java Index: InvokeStep.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/core/InvokeStep.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- InvokeStep.java 28 Feb 2004 03:35:54 -0000 1.5 +++ InvokeStep.java 28 Jul 2004 03:49:24 -0000 1.6 @@ -238,7 +238,7 @@ /** * Return a method signature useful in debugging and exception messages. * - * @param method Method name + * @param name Method name * @param types Parameter types */ protected String signature(String name, Class types[]) { 1.5 +1 -2 jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/web/ActivityServlet.java Index: ActivityServlet.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/workflow/src/java/org/apache/commons/workflow/web/ActivityServlet.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ActivityServlet.java 28 Feb 2004 03:35:55 -0000 1.4 +++ ActivityServlet.java 28 Jul 2004 03:49:24 -0000 1.5 @@ -356,7 +356,6 @@ // Configure a Digester instance to parse our definition file Digester digester = new Digester(); - digester.setDebug(detail); digester.setNamespaceAware(true); digester.setValidating(false); digester.push(this); --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org