[Oberon] Ancestor method call

Dan Parnete dan.parnete at fastwebnet.it
Tue Oct 4 18:45:23 CEST 2005


Hello,

I have a construction like that:

TYPE
    Field = OBJECT (WMStandardComponents.Panel)
       PROCEDURE FocusLost;
       BEGIN
          FocusLost^;
          ....
       END;
    END Field;

    Date = OBJECT (Field)
       PROCEDURE FocusLost;
       BEGIN
          FocusLost^;
          ....
       END;
    END Date;

I should like to know if it is possible in Date to call directly the 
Panel's FocusLost without executing the Field's code. Something like 
FocusLost^^.
BTW I have tried FocusLost^^^ and PACO accepts it (how sweet), but 
executes the normal ancestor call.

Thanks,
Dan Parnete


More information about the Oberon mailing list