Bug 153992 - Make the org.eclipse.dd plugin run in a 1.4 environment
Summary: Make the org.eclipse.dd plugin run in a 1.4 environment
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: DD (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: DD General Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-08-15 19:43 EDT by Michael Scharf CLA
Modified: 2010-10-14 15:21 EDT (History)
0 users

See Also:


Attachments
A patch that fixes the problem (1.86 KB, patch)
2006-08-15 19:44 EDT, Michael Scharf CLA
no flags Details | Diff
Converts the plugin to a real 1.4 plugin (10.48 KB, patch)
2006-08-15 20:09 EDT, Michael Scharf CLA
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Scharf CLA 2006-08-15 19:43:05 EDT
The org.eclipse.dd requires java 1.5. Make it work nicely coexist witha 1.4 envoronment.

See also http://michaelscharf.blogspot.com/2006/07/how-to-setup-some-plugins-to-use-java.html
Comment 1 Michael Scharf CLA 2006-08-15 19:44:15 EDT
Created attachment 47982 [details]
A patch that fixes the problem
Comment 2 Michael Scharf CLA 2006-08-15 20:09:58 EDT
Created attachment 47983 [details]
Converts the plugin to a real 1.4 plugin

I actually looked at the memoryview plugin to check which 1.5 features it uses and it turns out it does not really use any 1.5 features (it uses @Override and the clone() method uses the new "Overriding Return Types" feature. To become a real 1.5 plugin, a lot more has to be done (like uing generics for he collections). 

I think it accodentally haappened by using a 1.5 environment to develop the plugin. 

Therefore I created a new patch that makews it a real 1.4 plugin....