abapGit/src/utils/zif_abapgit_progress.intf.abap
Marc Bernard 7f61ebd645
UI: Clear progress bar (#4249)
* UI: Clear progress bar

Clears status/progress bar at end of process and removes leftover messages. 

Closes #3505

* Lint

Co-authored-by: Lars Hvam <larshp@hotmail.com>
2020-11-27 10:18:52 +01:00

14 lines
222 B
ABAP

INTERFACE zif_abapgit_progress
PUBLIC .
METHODS show
IMPORTING
!iv_current TYPE i
!iv_text TYPE csequence .
METHODS set_total
IMPORTING
!iv_total TYPE i .
METHODS off .
ENDINTERFACE.