Does it matter where you place the call to the "addSetNext" method of a Digester instance, as long as it's before the "parse" method call?

i.e.:

Digester dig = new Digester();
dig.push(this);
dig....
dig....
dig....
dig.addSetNext("some/pattern", "addFoo");
dig.parse(file);


is the same as:


Digester dig = new Digester();
dig.push(this);
dig.adSetNext("some/pattern", "addFoo");
dig....
dig....
dig....
dig.parse(file);


?



Thanks,


Erik


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



Reply via email to