#summary The @extends tag == Usage == @extends == Description == Define the inheritance structure of a class or interface. Indicate that a class/interface is a subclass of another class/interface. There could be several entries for @extend within the same class/interface definition. TODO: Document the expected behavior of this in further detail. E.g. What does it when an interface extends another interface? Or when a class extends an interface? There should probably be a !BestPractice section on this. == Example == {{{ /** * @class OpticalMouse @extends ComputerMouse @extends OpticalDevice */ }}} == Details == || Since || v1.0 ||