CLASS-EVENTS evt [EXPORTING parameters] .
This statement declares a static event evt in a class or interface. The
naming conventions apply to the name
evt. The static event evt can be triggered
in all methods of the same class, or a class that implements the interface, and in the methods of subclasses
- if it is visible there - using the RAISE EVENT statement.
... EXPORTING parameters
The EXPORTING addition defines the parameter interface
of the event evt. The syntax and meaning of the
parameters additions correspond with definition of instance events using the EVENTS statement.
Static events have no implicit formal parameter sender.