Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 191470 - IBPELUIConstants.BPEL_SPEC_COMPLIANT_EDITOR_ID is obsolete and should go away
Summary: IBPELUIConstants.BPEL_SPEC_COMPLIANT_EDITOR_ID is obsolete and should go away
Status: RESOLVED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: BPEL (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: BPEL UI Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-06-07 09:19 EDT by Vitaly Tishkov CLA
Modified: 2022-10-03 11:11 EDT (History)
0 users

See Also:


Attachments
a patch for the bug (2.11 KB, patch)
2007-06-07 09:24 EDT, Vitaly Tishkov CLA
bbrodt: iplog+
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Vitaly Tishkov CLA 2007-06-07 09:19:26 EDT
Build ID:  I20070222-0951

Steps To Reproduce:
BPELEditor.getPaletteAdditionsContributorId() looks like this now:

protected String getPaletteAdditionsContributorId() {
	if (contributorID == null) {
		ProcessExtension extension = (ProcessExtension) getExtensionMap().get(getProcess());
		if (extension.isSpecCompliant()) {
			contributorID = IBPELUIConstants.BPEL_SPEC_COMPLIANT_EDITOR_ID;
	    	} else {
	    		contributorID = getEditorSite().getId();
	    	}
		return contributorID;
	}
}

BPEL_SPEC_COMPLIANT_EDITOR_ID is "cosmic waste" ((c) Michal :) ) and shoule be deleted.

So, the method should look this way:

protected String getPaletteAdditionsContributorId() {
	return IBPELUIConstants.BPEL_EDITOR_ID;
}

More information:
Comment 1 Vitaly Tishkov CLA 2007-06-07 09:24:27 EDT
Created attachment 70495 [details]
a patch for the bug
Comment 2 Simon Moser CLA 2007-06-08 05:04:56 EDT
The patch looks good, I reviewed it and will therefore release it
Comment 3 Robert Brodt CLA 2012-04-18 14:16:28 EDT
Comment on attachment 70495 [details]
a patch for the bug

Updated iplog flag for v1.0 release review.