blob: 61b2ba7e71ef47c1a5f6994560364b1913609e1d [file] [log] [blame]
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.dltk.core" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
<appInfo>
<meta.schema plugin="org.eclipse.dltk.core" id="completionEngine" name="Completion Engine"/>
</appInfo>
<documentation>
This extension point allows to contribute language specific completion engines to provide completion proposals to the Script editor content assist.
</documentation>
</annotation>
<element name="extension">
<annotation>
<appInfo>
<meta.element />
</appInfo>
</annotation>
<complexType>
<sequence minOccurs="0" maxOccurs="unbounded">
<element ref="completionEngine"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
<documentation>
</documentation>
</annotation>
</attribute>
<attribute name="id" type="string">
<annotation>
<documentation>
</documentation>
</annotation>
</attribute>
<attribute name="name" type="string">
<annotation>
<documentation>
</documentation>
<appInfo>
<meta.attribute translatable="true"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<element name="completionEngine">
<annotation>
<appInfo>
<meta.element labelAttribute="nature"/>
</appInfo>
<documentation>
A completion engine contribution.
</documentation>
</annotation>
<complexType>
<attribute name="nature" type="string" use="required">
<annotation>
<documentation>
the nature id of the langugage this contribution is for.
</documentation>
<appInfo>
<meta.attribute kind="identifier" basedOn="org.eclipse.dltk.core.language/language/@nature"/>
</appInfo>
</annotation>
</attribute>
<attribute name="priority" type="string" use="default" value="0">
<annotation>
<documentation>
the priority of this completion engine. Completion engines having higher pritority number are called ealier.
</documentation>
</annotation>
</attribute>
<attribute name="class" type="string" use="required">
<annotation>
<documentation>
the name of the class that implements the contributed completion engine. The class must be public and implement
&lt;code&gt;org.eclipse.dltk.codeassist.ICompletionEngine&lt;/code&gt;
and must have a public 0-argument constructor.
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.dltk.codeassist.ICompletionEngine"/>
</appInfo>
</annotation>
</attribute>
</complexType>
</element>
<annotation>
<appInfo>
<meta.section type="since"/>
</appInfo>
<documentation>
[Enter the first release in which this extension point appears.]
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="examples"/>
</appInfo>
<documentation>
[Enter extension point usage example here.]
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="apiInfo"/>
</appInfo>
<documentation>
[Enter API information here.]
</documentation>
</annotation>
<annotation>
<appInfo>
<meta.section type="implementation"/>
</appInfo>
<documentation>
[Enter information about supplied implementation of this extension point.]
</documentation>
</annotation>
</schema>