Spring IDE

Are you missing a feature? Request its implementation here.
dopresyla
Posts: 2
Joined: Fri Aug 04, 2006 12:36 pm

Spring IDE

Post by dopresyla »

Currently, installing the oxygen eclipse plugin, breaks content assist in the Spring IDE plugin.
Any chance of the being fixed?
(for more info see this)
sorin_ristache
Posts: 4141
Joined: Fri Mar 28, 2003 2:12 pm

Post by sorin_ristache »

Hello,

The suggestions of the Spring IDE ticket are wrong. The Eclipse editors contributed by the <oXygen/> plugin extend from the Eclipse text editor, not the multi-page editor. Also the plugin uses a SWT/JFace interface, not Swing, so it is not just the standalone version of <oXygen/> called from Eclipse. The Spring IDE ticket says that Spring IDE adds context menu items to the Eclipse text editor. There is a similar conflict between the oXygen plugin and another plugin adding context menu items discussed on this forum. The conflict can be solved by editing the action elements of the context menu items in the plugin.xml file of that plugin. Does this work for Spring IDE ?

Regards,
Sorin
dopresyla
Posts: 2
Joined: Fri Aug 04, 2006 12:36 pm

Post by dopresyla »

Ok I've seemed to have solved it.
I've changed the 'priority'-attribute from normal to high:

Code: Select all


<extension point="org.eclipse.core.runtime.contentTypes">
<content-type id="beansConfig"
name="%contentTypeName"
base-type="org.eclipse.core.runtime.xml"
priority="high"
default-charset="UTF-8">
<describer
class="org.eclipse.core.runtime.content.XMLRootElementContentDescriber">
<parameter name="element" value="beans" />
</describer>
</content-type>
</extension>
It seems to work, but maybe it will break something else, I'll just have to wait and see.
Post Reply