Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 38255 Details for
Bug 111852
[Progress] [RCP] Job ErrorNotification enhancement (set custom manager)
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
new IJobErrorNotificationManager
IJobErrorNotificationManager.java (text/x-java), 1.48 KB, created by
Alexander Bieber
on 2006-04-11 03:23:30 EDT
(
hide
)
Description:
new IJobErrorNotificationManager
Filename:
MIME Type:
Creator:
Alexander Bieber
Created:
2006-04-11 03:23:30 EDT
Size:
1.48 KB
patch
obsolete
>/* > * Created on Oct 6, 2005 > */ >package org.eclipse.ui.progress; > >import java.util.Collection; > >import org.eclipse.core.runtime.IStatus; >import org.eclipse.core.runtime.jobs.Job; > >/** > * Instances of IJobErrorNotificationManager are responsible to manage the display of > * information on errors occured during job execution. > * > * @since 3.2 > */ >public interface IJobErrorNotificationManager { > > /** > * Display the error for the given job and any other errors > * that have been accumulated. This method must be invoked > * from the UI thread. > * @param job the job whose error should be displayed > * @param title The title for the dialog > * @param msg The message for the dialog. > * @return <code>true</code> if the info for the job was found and the error > * displayed and <code>false</code> otherwise. > */ > public abstract boolean showErrorFor(Job job, String title, String msg); > > /** > * Return whether the manager has errors to report. > * @return whether the manager has errors to report > */ > public abstract boolean hasErrors(); > > /** > * Add a new error to the list for the supplied job. > * @param status The error status of the failed job. > * @param job The failed job. > */ > public void addError(IStatus status, Job job); > > /** > * Returns the list of accumulated errors > * @return A Collection of {@link IJobErrorInfo}. The list of errors accumulated. > */ > public Collection getErrors(); > > /** > * Clears the list of errors. > */ > public void clearAllErrors(); > >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 111852
:
27983
|
38254
| 38255 |
38256
|
38257