Re: digester newbie question

2004-12-06 Thread simon
On Mon, 2004-12-06 at 07:30, Mihai C. wrote: Hi all, being new to digester, I have no clue how to get around my problem. Here's the story: I'm trying to parse a config xml that looks like this: root a ... b . /b b

Re: digester newbie question

2004-12-06 Thread Matthijs Wensveen
simon wrote: On Mon, 2004-12-06 at 07:30, Mihai C. wrote: Hi all, being new to digester, I have no clue how to get around my problem. Here's the story: I'm trying to parse a config xml that looks like this: root a ... b . /b b .

Re: digester newbie question

2004-12-06 Thread simon
On Mon, 2004-12-06 at 23:36, simon wrote: Digester d = new Digester(); d.push(this); //stack bottom d.addSetNext( root/a/b, processB , BBean); // when root/a/b pattern mathes, execute processB on 'this' with BBean type param d.addSetNext( root/a,

Re: digester newbie question

2004-12-06 Thread Mihai C.
again, --mihai - Original Message - From: simon [EMAIL PROTECTED] To: Jakarta Commons Developers List [EMAIL PROTECTED] Sent: Monday, December 06, 2004 5:07 PM Subject: Re: digester newbie question On Mon, 2004-12-06 at 23:36, simon wrote: Digester d = new Digester(); d.push

digester newbie question

2004-12-05 Thread Mihai C.
Hi all, being new to digester, I have no clue how to get around my problem. Here's the story: I'm trying to parse a config xml that looks like this: root a ... b . /b b . /b /a a ... b