Java org.eclipse.jgit.lib ProgressMonitor fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jgit.lib ProgressMonitor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jgit.lib ProgressMonitor.

The text is from its open source code.

Implementation

org.eclipse.jgit.lib.ProgressMonitor has the following implementations.
Click this link to see all its implementation.

Field

intUNKNOWN
Constant indicating the total work units cannot be predicted.

Constructor

Method

voidbeginTask(String title, int totalWork)
Begin processing a single task.
voidendTask()
Finish the current task, so the next can begin.
booleanisCancelled()
Check for user task cancellation.
voidstart(int totalTasks)
Advise the monitor of the total number of subtasks.
voidupdate(int completed)
Denote that some work units have been completed.