schema.spellingEngine.exsd Maven / Gradle / Ivy
Allows contributors to add spelling engines.
a fully qualified identifier of the target extension point
an optional identifier of the extension instance
an optional name of the extension instance
The definition of a spelling engine.
the class of the engine, which must implement <code>org.eclipse.ui.texteditor.spelling.ISpellingEngine</code>
the display label for the engine, which will show up in the menu that allows the user to choose the spelling engine
a string uniquely identifying this engine
if this flag is set to <code>true</code>, this spelling engine will be installed per default. If multiple engines are installed with the flag set are encountered, the first one is taken.
an implementation of <code>org.eclipse.ui.texteditor.spelling.ISpellingPreferenceBlock</code>
3.1
The following is an example of a spelling engine definition.
<p>
<pre>
<extension point="org.eclipse.ui.workbench.texteditor.spellingEngine">
<engine
default="true"
label="%defaultSpellingEngine.label"
class="org.eclipse.jdt.internal.ui.text.spelling.DefaultSpellingEngine"
id="org.eclipse.jdt.internal.ui.text.spelling.DefaultSpellingEngine">
</engine>
</extension>
</pre>
</p>
The <code>org.eclipse.jdt.ui</code> plugin contributes <code>DefaultSpellingEngine</code>. See its implementation as an example.
Copyright (c) 2001, 2005 IBM Corporation and others.<br>
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>