Page 1 of 1
Spring IDE
Posted: Fri Aug 04, 2006 12:41 pm
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)
Posted: Mon Aug 07, 2006 12:38 pm
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
Posted: Mon Aug 07, 2006 2:38 pm
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.