Accessing Idea progressMonitor

Is there an example showing how to access the IDEA popup/progressMonitor so I can access from my plugin?

0

Try using ProgressManager.getInstance(). You can start your own Runnables in background or modal.
ProgressManager.getInstance().getProgressIndicator() gives you the ProgressIndicator which you can update during your iterative operation.
Regards,
Dan

0

请先登录再写评论。