diff options
author | Kai Maetzel | 2004-06-23 13:40:01 +0000 |
---|---|---|
committer | Kai Maetzel | 2004-06-23 13:40:01 +0000 |
commit | 507dee05cac43e62d429e0a45a56b5aae6b1ba15 (patch) | |
tree | 4deb42557215242d8e5bc7445ebc876c946d81c1 /org.eclipse.core.filebuffers/schema/annotationModelCreation.exsd | |
parent | bb6ef114c0ce93c4a75ffbf4f8e0b7dfa4cdf126 (diff) | |
download | eclipse.platform.text-507dee05cac43e62d429e0a45a56b5aae6b1ba15.tar.gz eclipse.platform.text-507dee05cac43e62d429e0a45a56b5aae6b1ba15.tar.xz eclipse.platform.text-507dee05cac43e62d429e0a45a56b5aae6b1ba15.zip |
updated Javadoc
Diffstat (limited to 'org.eclipse.core.filebuffers/schema/annotationModelCreation.exsd')
-rw-r--r-- | org.eclipse.core.filebuffers/schema/annotationModelCreation.exsd | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/org.eclipse.core.filebuffers/schema/annotationModelCreation.exsd b/org.eclipse.core.filebuffers/schema/annotationModelCreation.exsd index 47e2ef989..aae20f474 100644 --- a/org.eclipse.core.filebuffers/schema/annotationModelCreation.exsd +++ b/org.eclipse.core.filebuffers/schema/annotationModelCreation.exsd @@ -6,7 +6,7 @@ <meta.schema plugin="org.eclipse.core.filebuffers" id="annotationModelCreation" name="Annotation Model Creation"/>
</appInfo>
<documentation>
- This extension point is interesting for your if you want the file buffer manager to instantiate a specific annotation models for certain file content types, file extensions, or file names.
+ This extension point is used to customize the annotation model creation behavior of this plug-in's default text file buffer manager. It allows to specify which annotation model factory should be used in order to create the annotation model instance of a text file buffer created for a certain file content type, file extension, or file name.
</documentation>
</annotation>
@@ -40,11 +40,16 @@ </element>
<element name="factory">
+ <annotation>
+ <documentation>
+ The specification of a annotation model factory. In order to find a factory for a given file the attributes of each factory specification are consulted in the following sequence: contentTypeId, fileNames, extensions. If multiple, equally specific factory specifications are found for a given file it is not specified which factory is used.
+ </documentation>
+ </annotation>
<complexType>
<attribute name="class" type="string" use="required">
<annotation>
<documentation>
-
+ The fully qualified name of the factory implementation class. This class must implement the org.eclipse.core.filebuffers.IAnnotationModelFactory interface.
</documentation>
<appInfo>
<meta.attribute kind="java" basedOn="org.eclipse.core.filebuffers.IAnnotationModelFactory"/>
@@ -54,21 +59,21 @@ <attribute name="extensions" type="string">
<annotation>
<documentation>
-
+ A comma separated list of file extensions for which this factory should be used.
</documentation>
</annotation>
</attribute>
<attribute name="fileNames" type="string">
<annotation>
<documentation>
-
+ A comma separated list of file names for which this factory should be used.
</documentation>
</annotation>
</attribute>
<attribute name="contentTypeId" type="string">
<annotation>
<documentation>
-
+ The id of a content type as defined by the org.eclipse.core.runtime.contentTypes extension point for which this factory should be used.
</documentation>
</annotation>
</attribute>
@@ -89,7 +94,15 @@ <meta.section type="examples"/>
</appInfo>
<documentation>
- [Enter extension point usage example here.]
+ <pre>
+ <extension
+ point="org.eclipse.core.filebuffers.annotationModelCreation">
+ <factory
+ extensions="xzy"
+ class="org.eclipse.ui.texteditor.ResourceMarkerAnnotationModelFactory">
+ </factory>
+ </extension>
+</pre>
</documentation>
</annotation>
@@ -98,7 +111,7 @@ <meta.section type="apiInfo"/>
</appInfo>
<documentation>
- [Enter API information here.]
+ Annotation model factories have to implement org.eclipse.core.filebuffers.IAnnotationModelFactory.
</documentation>
</annotation>
@@ -107,7 +120,7 @@ <meta.section type="implementation"/>
</appInfo>
<documentation>
- [Enter information about supplied implementation of this extension point.]
+
</documentation>
</annotation>
|