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
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
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.
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
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