RE: [Digester] Can use inner classes?

2006-10-18 Thread Simon Kitching
Subject: Re: [Digester] Can use inner classes? On 10/17/06, Allen,Eva [EMAIL PROTECTED] wrote: I'm attempting to write a small parser as part of another larger application. I'd like to do something like the following: public class Parser { ... ClassA s = new ClassA

Re: [Digester] Can use inner classes?

2006-10-17 Thread Martin Cooper
On 10/17/06, Allen,Eva [EMAIL PROTECTED] wrote: I'm attempting to write a small parser as part of another larger application. I'd like to do something like the following: public class Parser { ... ClassA s = new ClassA(); Digester d; d.push(s); ...

RE: [Digester] Can use inner classes?

2006-10-17 Thread Allen,Eva
Subject: Re: [Digester] Can use inner classes? On 10/17/06, Allen,Eva [EMAIL PROTECTED] wrote: I'm attempting to write a small parser as part of another larger application. I'd like to do something like the following: public class Parser { ... ClassA s = new ClassA