Index: ./latka/src/java/org/apache/commons/latka/AbstractReporter.java
===================================================================
RCS file: 
/home/cvspublic/jakarta-commons/latka/src/java/org/apache/commons/latka/AbstractReporter.java,v
retrieving revision 1.8
diff -r1.8 AbstractReporter.java
75c75,78
<  * Needs docs.
---
 >  * The base class for several 'reporters'.
 >  *
 >  * A reporter is a class that store or record information about 
events that
 >  * occur during Latka processing
81a85,87
 >   /**
 >    * maps the request to it's success or failure as a Boolean
 >    */
82a89,91
 >   /**
 >    * maps the session to it's success or failure as a Boolean
 >    */
84a94,97
 >   /**
 >    * Holds whether or not the entire suite has succeeded
 >    * This is set to false when <strong>any</strong> request fails
 >    */
86a100,103
 >   /**
 >    * holds the failed responses received by this object
 >    * @see #requestFailed(RequestEvent)
 >    */
88a106,108
 >   /**
 >    * The log4J category used for processing log requests
 >    */
91a112,117
 >   /**
 >    * Invoked if the request succeeds
 >    * Records the success
 >    *
 >    * @param event  a successful request event
 >    */
95a122,128
 >   /**
 >    * Invoked if the request failed.
 >    * Records the failure and adds the request's response to the list of
 >    * failed responses
 >    *
 >    * @param event  a "failed" request event.
 >    */
100a134,139
 >   /**
 >    * A skipped request.
 >    * Records the skip as a failure
 >    *
 >    * @param event  a "skipped" request.
 >    */
104c143,149
<  
---
 >
 >   /**
 >    * Invoked if a request error occurs.
 >    * Records the error as a failure
 >    *
 >    * @param event  a request "error" event.
 >    */ 
108a154,161
 >   /**
 >    * Record a success or failure
 >    * On a failed request, the current suite, request and session are
 >    * marked as failed
 >    *
 >    * param event  a request event.
 >    * param bool   the success or failure of the request
 >    */
118a172,178
 >   /**
 >    * Check to see if a particular Request succeeded or failed.
 >    *
 >    * @param request the request to check for success or
 >    * failure
 >    * @return true if request succeeded
 >    */
129a190,198
 >   /**
 >    * Check to see if a particular Session succeeded or failed.
 >    * Once a request inside a session fails, the session itself
 >    * is marked as a failure.
 >    *
 >    * @param session the session to check for success or
 >    * failure
 >    * @return true if all requests in the session succeeded
 >    */
139a209,213
 >  /**
 >   * Returns true if all Requests in the suite succeed.
 >   *
 >   * @return true if all Requests have succeeded
 >   */
143a218,220
 >   /**
 >    * @return a list of all responses of failed requests
 >    */

The command completed successfully.


-- 
dIon Gillard, Multitask Consulting
http://www.multitask.com.au/developers




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to