IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 41 | 41 | * Create the runnable object with a given message for the user. |
| 42 | 42 | * |
| 43 | 43 | * @param title message for the user |
| 44 | | * @param ignoreException If true, exception will be propagated to calling code. If false then |
| 45 | | * exception will be thrown directly in EDT. When this runnable is executed using executor framework |
| | 44 | * @param ignoreException If true, exception will be silently ignored. If false then |
| | 45 | * exception will be handled by showing a dialog. When this runnable is executed using executor framework |
| 46 | 46 | * then use false unless you read result of task (because exception will get lost if you don't) |
| 47 | 47 | */ |
| 48 | 48 | public PleaseWaitRunnable(String title, boolean ignoreException) { |
| … |
… |
|
| 54 | 54 | * |
| 55 | 55 | * @param parent the parent component for the please wait dialog. Must not be null. |
| 56 | 56 | * @param title message for the user |
| 57 | | * @param ignoreException If true, exception will be propagated to calling code. If false then |
| 58 | | * exception will be thrown directly in EDT. When this runnable is executed using executor framework |
| | 57 | * @param ignoreException If true, exception will be silently ignored. If false then |
| | 58 | * exception will be handled by showing a dialog. When this runnable is executed using executor framework |
| 59 | 59 | * then use false unless you read result of task (because exception will get lost if you don't) |
| 60 | 60 | * @throws IllegalArgumentException thrown if parent is null |
| 61 | 61 | */ |
| … |
… |
|
| 71 | 71 | * |
| 72 | 72 | * @param title message for the user |
| 73 | 73 | * @param progressMonitor progress monitor |
| 74 | | * @param ignoreException If true, exception will be propagated to calling code. If false then |
| 75 | | * exception will be thrown directly in EDT. When this runnable is executed using executor framework |
| | 74 | * @param ignoreException If true, exception will be silently ignored. If false then |
| | 75 | * exception will be handled by showing a dialog. When this runnable is executed using executor framework |
| 76 | 76 | * then use false unless you read result of task (because exception will get lost if you don't) |
| 77 | 77 | */ |
| 78 | 78 | public PleaseWaitRunnable(String title, ProgressMonitor progressMonitor, boolean ignoreException) { |