Reputation:
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?
Upvotes: 0
Views: 551
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