INTERFACES intf.
Within the declaration of an interface, the INTERFACES statement integrates interface intf in the declared interface. You cannot specify an additions. As a result, interface intf becomes a component interface of a composite interface. An interface can be composed of any number of different component interfaces. All these interfaces are equally valid on one level. If a component interface itself is a composite - that is, it contains its own component interfaces - the nesting hierarchy is irrelevant for the composition of the interface. It is relevant, however, for accssing the interface components.
To access a component comp of a component interface intf within a composite interface, you can use the expression intf~comp with the interface component selector (~). Multiple use of the interace component selection in an identifier (such as intf1~intf2~comp) is generally not supported. Within a composite interface, you can use the interface component selector to access only interface components of the component interface that are integrated in this interface using the statement INTERFACES. If you want to access components in a composite interface that cannot be addressed through the one-time use of the interface component selector, you must use the ALIASES statement to declare alias names for the interface components.The following example illustrates how you can use the INTERFACES statement to compose and implement interfaces. Class c1 implements the composite interfaces i2 and i3. Although it is a component interface of i2 and i3, it exists only once in class c1. A reference variables iref1 of the static type i1 is used to generate an object class c1 and call method i1~m1, which is implemented there.
INTERFACE i1.
METHODS m1.
ENDINTERFACE.
INTERFACE i2.
INTERFACES i1.
METHODS m2.
ENDINTERFACE.
INTERFACE i3.
INTERFACES i1.
METHODS m3.
ENDINTERFACE.
CLASS c1 DEFINITION.
PUBLIC SECTION.
INTERFACES: i2, i3.
ENDCLASS.
CLASS c1 IMPLEMENTATION.
METHOD i1~m1.
...
ENDMETHOD.
METHOD i2~m2.
...
ENDMETHOD.
METHOD i3~m3.
...
ENDMETHOD.
ENDCLASS.
DATA iref1 TYPE REF TO i1.
START-OF-SELECTION.
CREATE OBJECT iref1 TYPE c1.
iref1->m1( ).