user8191857
user8191857

Reputation:

How to update Eclipse status line?

I am performing background operations initiated from Remote Systems view. How do I update the progress on status line?

In summary, how to write a message to the Eclipse SDK status line?

enter image description here

Upvotes: 0

Views: 551

Answers (1)

howlger
howlger

Reputation: 34295

The message displayed in the status bar is the name of the (long running) job, which is scheduled and run by Eclipse. The progress percentage is updated within the job via the IProgressMonitor.

See: Eclipse Jobs and Background Processing - Tutorial

Upvotes: 1

Related Questions