Interface ExportProgressUpdater

All Superinterfaces:
ProgressUpdater

@API(type=EXTENDABLE, src=PUBLIC) public interface ExportProgressUpdater extends ProgressUpdater
Interface used to update the progress component.
Since:
18.1
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    The operation progress is done.
    boolean
    Check if the progress is cancelled.
    void
    The operation progress is started.

    Methods inherited from interface ro.sync.ecss.dita.mapeditor.actions.export.ProgressUpdater

    cancel, updateProgressStatus
  • Method Details

    • start

      void start()
      The operation progress is started.
    • isCanceled

      boolean isCanceled()
      Check if the progress is cancelled.
      Returns:
      true if the progress is canceled
    • done

      void done()
      The operation progress is done.