|
uninherit >>-uninherit(classobj)----------------------------------------->< Nullifies the effect of any previous [inherit] message sent to the receiver for the class [classobj] . Note You cannot change the classes that Rexx provides by sending [uninherit] messages. Class class - uninherut method
location=.object~mixinClass("Location")
room=.object~subclass("Room")~~inherit(location) /* Creates subclass */
/* and specifies inheritance */
room~uninherit(location)
|