Re: [Java] trouble with inheritance

2003-08-28 Thread Jason E. Stewart
"Patrick LeBoutillier" <[EMAIL PROTECTED]> writes: > I've uncommented all the FIXME's you put any everything seems ok on > my machine (Linux RedHat 7.1) with Java 1.4. > > I'm assuming it's ok: I see 3 small red squares along a long > diagonal line (some parts green, some parts blue). I can zoom

Re: [Java] trouble with inheritance

2003-08-26 Thread jason_e_stewart
"Patrick LeBoutillier" <[EMAIL PROTECTED]> writes: > In theory it should find it and select the right one, even if there > is more than one method. Try turning debugging on (export > PERL_INLINE_JAVA_DEBUG=5) before running your script. It will dump a > whole lot of stuff out. If you can't deciph

[Java] trouble with inheritance

2003-08-26 Thread Jason E. Stewart
Hi, I'm getting what seems to be an inheritance error. I have a class, PLayer which is defined as extending PNode: public class PLayer extends PNode PNode defines the addChild method: public void addChild(PNode child) But when I use it in my code I get the following error: Method ad