CLASS-EVENTS

Short Reference

Syntax

CLASS-EVENTS evt [EXPORTING parameters] .

Addition:

... EXPORTING parameters

Effect

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.

Addition

... EXPORTING parameters

Effect

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.

Note

Static events have no implicit formal parameter sender.