Hi,
I've got the problem, that I have got an interface which includes another interface.
e.g.
interface zif_saveable
public .
interfaces zif_object.
methods save.
endinterface.
my class implements this interface and this is done with SAP GUI (stupid collegues)
CLASS zhenn_if_test DEFINITION
PUBLIC
CREATE PUBLIC .
PUBLIC SECTION.
interfaces zif_saveable.
interfaces zif_object.
PROTECTED SECTION.
PRIVATE SECTION.
ENDCLASS.
SAP GUI inserts both interfaces in the class definition. (Eclipse doesn't).
If I now execute the quick fix for implementing all missing methods, eclipse creates the method implementations for zif_object twice.
(And this every time I execute the quick fix)
Is there a chance to get this bug fixed?
I am on a 731 SP 14 System.
Regards David