Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 67574
Collapse All | Expand All

(-)Eclipse UI/org/eclipse/ui/internal/progress/FinishedJobs.java (-1 / +3 lines)
Lines 60-67 Link Here
60
            public void refreshAll() {
60
            public void refreshAll() {
61
            }
61
            }
62
            public void removeJob(JobInfo info) {
62
            public void removeJob(JobInfo info) {
63
                if (keep(info))
63
                if (keep(info)) {
64
                	checkForDuplicates(info);
64
                    add(info);
65
                    add(info);
66
                }
65
            }
67
            }
66
            public void removeGroup(GroupInfo group) {
68
            public void removeGroup(GroupInfo group) {
67
            }
69
            }
(-)Eclipse UI/org/eclipse/ui/progress/IProgressConstants.java (-2 / +2 lines)
Lines 43-50 Link Here
43
	/** 
43
	/** 
44
	 * The KEEPONE_PROPERTY is an extension to the KEEP_PROPERTY, that provides a hint
44
	 * The KEEPONE_PROPERTY is an extension to the KEEP_PROPERTY, that provides a hint
45
	 * to the progress UI to ensure that only a single Job of a Job family is kept in the
45
	 * to the progress UI to ensure that only a single Job of a Job family is kept in the
46
	 * set of kept Jobs. That is, whenever a Job finishes (and becomes kept), all other
46
	 * set of kept Jobs. That is, whenever a Job that has the KEEPONE_PROPERTY starts or finishes,
47
	 * kept Jobs of the same family are removed first.
47
	 * all other kept Jobs of the same family are removed first.
48
	 * <p>
48
	 * <p>
49
	 * Membership to family is established by implementing a Job's <code>belongsTo</code>
49
	 * Membership to family is established by implementing a Job's <code>belongsTo</code>
50
	 * method and returning <code>true</code>.
50
	 * method and returning <code>true</code>.

Return to bug 67574