mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-03 13:26:12 +08:00

* 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>
14 lines
222 B
ABAP
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.
|