override

abstract fun override(): Int

Determines how and whether a generated method should extend a method from it's parent.

Must be one of OVERRIDE_NONE, OVERRIDE_EXTEND, OVERRIDE_REPLACE.

The extended method is determined by String and argument matching against methods in the extended class. If OVERRIDE_NONE is used and the method and arguments match a method in the extended class, a compile time error will result. Similarly if any other override type is used and no method/arguments in the extended class match, a compile time error will result.