ProgressBar and Console API

Hi,

Are there any API allowing to reuse the progressbar and the Console window of IntelliJ ?

Thanks

0
Avatar
Permanently deleted user

You can access the process bar via the ProcessManager.getInstance() method.

ProgressManager.getInstance().runProcessWithProgressSynchronously(new Runnable() { ... })
Additionally you can update the ProgressManager with getProgressIndicator().setText(...)

0

请先登录再写评论。