Re: [OT]: invoking methods two levels up the hierarchy?

2001-03-30 Thread Weiqi Gao
On 29 Mar 2001 22:02:14 -0500, Dimitris Vyzovitis wrote: > This is totally off topic, but somebody may have an idea... You can > answer (or flame me ;) in private to avoid contaminating the list further. > > Is there any way to invoke a method for a class two levels up the hierarchy? Not really

DDD

2001-03-30 Thread Steve Racine
Does anyone have or know where there exists a fully-statically compiled RPM binary for DDD that is new enough to open Java .class files? I have looked through the more obvious routes and only find old static binaries and new source distributions. Stephen Racine Convertible Arbitrage & Technology

Re: DDD

2001-03-30 Thread Joi Ellis
On Fri, 30 Mar 2001, Steve Racine wrote: > Does anyone have or know where there exists a fully-statically compiled RPM > binary for DDD that is new enough to open Java .class files? I have looked > through the more obvious routes and only find old static binaries and new > source distributions.

1.3 source diffs?

2001-03-30 Thread John R MacMillan
Where can I find the 1.3.0 source diffs? I've poked around the website and ftp mirrors, and the mailing list archive but haven't found anything. Thanks, John -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsu

Re: invoking methods two levels up the hierarchy?

2001-03-30 Thread Tim Hanson
Hi Dimitris Dimitris Vyzovitis wrote this on 30-Mar-01 at 04:02:14 > class A { > void doit() { > // ... > } > } > > abstract class B extends A { > abstract void doit(); > } > > class C extends B { > void doit() { > // ... > } > } > > Now, say that a