You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by rd...@apache.org on 2002/04/17 21:16:35 UTC

cvs commit: jakarta-commons/digester/src/java/org/apache/commons/digester package.html

rdonkin     02/04/17 12:16:35

  Modified:    digester/src/java/org/apache/commons/digester package.html
  Log:
  Added digester documentation improvements suggested by Sebastien BRUNOT
  
  Revision  Changes    Path
  1.9       +8 -4      jakarta-commons/digester/src/java/org/apache/commons/digester/package.html
  
  Index: package.html
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/digester/src/java/org/apache/commons/digester/package.html,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- package.html	6 Feb 2002 18:13:45 -0000	1.8
  +++ package.html	17 Apr 2002 19:16:34 -0000	1.9
  @@ -310,11 +310,15 @@
   
   <p>It is quite possible that, when a particular XML element is being parsed,
   the pattern for more than one registered processing rule will be matched
  -(either because you registered more than one processing rule with the same
  + either because you registered more than one processing rule with the same
   matching pattern, or because one more more exact pattern matches and wildcard
  -pattern matches are satisfied by the same element.  When this occurs, the
  -corresponding processing rules will all be fired, in the order that they were
  -initially registered with the Digester.</p>
  +pattern matches are satisfied by the same element.</p>
  +
  +<p>When this occurs, the corresponding processing rules will all be fired in order. 
  +<code>begin</code> (and <code>body</code>) method calls are executed in the 
  +order that the <code>Rules</code> where initially registered with the 
  +<code>Digester</code>, whilst <code>end</code> method calls are execute in 
  +reverse order. In other words - the order is first in, last out.</p>
   
   <a name="doc.Rules"></a>
   <h3>Processing Rules</h3>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>