Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2003-01-09 23:00:03 +0000
committerDarin Swanson2003-01-09 23:00:03 +0000
commit62daa02b0f2f795fc1eff59d2c0b1ae5db375f8c (patch)
tree605b1e0648ae7da18855f1d99ea9c7d503b8ef38 /org.eclipse.debug.core/schema/launchConfigurationComparators.exsd
parent776c153d6ab9b46a60290acf5f4add2e3b704932 (diff)
downloadeclipse.platform.debug-62daa02b0f2f795fc1eff59d2c0b1ae5db375f8c.tar.gz
eclipse.platform.debug-62daa02b0f2f795fc1eff59d2c0b1ae5db375f8c.tar.xz
eclipse.platform.debug-62daa02b0f2f795fc1eff59d2c0b1ae5db375f8c.zip
Bug 29153 - Migrate extension point schema ownership
Diffstat (limited to 'org.eclipse.debug.core/schema/launchConfigurationComparators.exsd')
-rw-r--r--org.eclipse.debug.core/schema/launchConfigurationComparators.exsd124
1 files changed, 124 insertions, 0 deletions
diff --git a/org.eclipse.debug.core/schema/launchConfigurationComparators.exsd b/org.eclipse.debug.core/schema/launchConfigurationComparators.exsd
new file mode 100644
index 000000000..b77afbc43
--- /dev/null
+++ b/org.eclipse.debug.core/schema/launchConfigurationComparators.exsd
@@ -0,0 +1,124 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!-- Schema file written by PDE -->
+<schema targetNamespace="org.eclipse.debug.core">
+<annotation>
+ <appInfo>
+ <meta.schema plugin="org.eclipse.debug.core" id="launchConfigurationComparators" name="Launch Configuration Comparators"/>
+ </appInfo>
+ <documentation>
+ This extension point provides a configurable mechanism for comparing specific attributes of a launch configuration.
+In general, launch configuration attributes can be compared for equality via the default implementation of &lt;samp&gt;java.lang.Object.equals(Object)&lt;/samp&gt;.
+However, attributes that require special handling should implement this extension point.
+For example, when an attribute is stored as XML, it is possible that two strings representing an equivalent attribute have different whitespace formatting.
+ </documentation>
+</annotation>
+
+ <element name="extension">
+ <complexType>
+ <sequence>
+ <element ref="launchConfigurationComparator" minOccurs="0" maxOccurs="unbounded"/>
+ </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>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="launchConfigurationComparator">
+ <complexType>
+ <attribute name="id" type="string" use="required">
+ <annotation>
+ <documentation>
+ specifies a unique identifier for this extension.
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="attribute" type="string" use="required">
+ <annotation>
+ <documentation>
+ specifies the launch configuration attribute name that this comparator compares.
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="class" type="string" use="required">
+ <annotation>
+ <documentation>
+ specifies a fully-qualified name of a class that implements &lt;samp&gt;java.util.Comparator&lt;/samp&gt;.
+ </documentation>
+ <appInfo>
+ <meta.attribute kind="java" basedOn="java.util.Comparator"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="examples"/>
+ </appInfo>
+ <documentation>
+ The following is an example of a launch configuration comparator extension point:
+
+&lt;p&gt;
+&lt;pre&gt;
+ &lt;extension point="org.eclipse.debug.core.launchConfigurationComparators"&gt;
+ &lt;launchConfigurationComparator
+ id="com.example.ExampleIdentifier"
+ attribute="com.example.ExampleAttributeName"
+ class="com.example.ComparatorImplementation"&gt;
+ &lt;/launchConfigurationComparator&gt;
+ &lt;/extension&gt;
+&lt;/pre&gt;
+&lt;/p&gt;
+
+In the example above, the specified type of launch configuration comparator will be consulted when comparing the equality of attributes keyed with name &lt;samp&gt;com.example.ExampleAttributeName&lt;/samp&gt;.
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="apiInfo"/>
+ </appInfo>
+ <documentation>
+ Value of the attribute &lt;b&gt;class&lt;/b&gt; must be a fully-qualified name of a Java class that implements the interface &lt;b&gt;java.util.Comparator&lt;/b&gt;.
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="implementation"/>
+ </appInfo>
+ <documentation>
+ [Enter information about supplied implementation of this extension point.]
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="copyright"/>
+ </appInfo>
+ <documentation>
+
+ </documentation>
+ </annotation>
+
+</schema>

Back to the top