Product Information > JADE Error Messages and System Messages > 6000 through 6999 - JADE Compiler Errors > 6304 - Method cannot be final -- has implementors

6304   Method cannot be final -- has implementors

Cause

This error occurs if you attempt to specify the final option for a method and the method has been reimplemented in a subclass. This is not permitted, because the final option specifies that the method cannot be reimplemented.

Action

Remove the final option from the method signature. Alternatively, remove all reimplementations of the method.