Read Me - Common Public License V1.0 - Copyright Notice(©)

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)

Read Me - Common Public License V1.0 - Copyright Notice(©)