In the following example, as the Canine class inherits from a class that already contains a property or method of the same name, the REDEFINE clause is the only clause that can be applied to the items in the Canine class, and is therefore assumed.
class-id Animal. 01 aSize string STATIC PROPERTY. method-id FeedHabit STATIC. ... end method. end class. class-id Canine inherits type Animal. 01 aSize string STATIC PROPERTY. *> REDEFINE assumed method-id FeedHabit STATIC. *> REDEFINE assumed ... end method. end class.