Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2008-04-01 19:36:53 +0000
committerDarin Wright2008-04-01 19:36:53 +0000
commit3b4998bc1d1b48363da625f832b290bceec2dbd7 (patch)
treea4eacf05f867ccf78fc7c3bd9caf5aa321e3f7c2
parent23f4387e9514e6a55ed386d8c9dbce86ebada6c9 (diff)
downloadeclipse.platform.debug-3b4998bc1d1b48363da625f832b290bceec2dbd7.tar.gz
eclipse.platform.debug-3b4998bc1d1b48363da625f832b290bceec2dbd7.tar.xz
eclipse.platform.debug-3b4998bc1d1b48363da625f832b290bceec2dbd7.zip
Bug 220442 - adopt identifier attribute for schemas
-rw-r--r--org.eclipse.debug.core/schema/breakpoints.exsd32
-rw-r--r--org.eclipse.debug.core/schema/launchDelegates.exsd3
2 files changed, 22 insertions, 13 deletions
diff --git a/org.eclipse.debug.core/schema/breakpoints.exsd b/org.eclipse.debug.core/schema/breakpoints.exsd
index 0c076e8a8..cd5d0f23d 100644
--- a/org.eclipse.debug.core/schema/breakpoints.exsd
+++ b/org.eclipse.debug.core/schema/breakpoints.exsd
@@ -1,10 +1,10 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
-<schema targetNamespace="org.eclipse.debug.core">
+<schema targetNamespace="org.eclipse.debug.core" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
- <appInfo>
+ <appinfo>
<meta.schema plugin="org.eclipse.debug.core" id="breakpoints" name="Breakpoints"/>
- </appInfo>
+ </appinfo>
<documentation>
This extension point defines a mechanism for defining new types of breakpoints.
</documentation>
@@ -53,6 +53,9 @@
<documentation>
specifies the fully qualified identifier (id) of the corresponding marker definition for breakpoints of this type.
</documentation>
+ <appinfo>
+ <meta.attribute kind="identifier" basedOn="org.eclipse.core.resources.markers/@id"/>
+ </appinfo>
</annotation>
</attribute>
<attribute name="class" type="string" use="required">
@@ -60,9 +63,9 @@
<documentation>
specifies the fully qualified name of the Java class that implements &lt;code&gt;IBreakpoint&lt;/code&gt;.
</documentation>
- <appInfo>
+ <appinfo>
<meta.attribute kind="java" basedOn="org.eclipse.debug.core.model.Breakpoint"/>
- </appInfo>
+ </appinfo>
</annotation>
</attribute>
<attribute name="name" type="string">
@@ -70,18 +73,18 @@
<documentation>
specifies a user-presentable name for this breakpoint type. For example, &quot;Java Line Breakpoint&quot;. This attribute was added in 3.1 to support automatic grouping of breakpoints by breakpoint type. When this attribute is unspecified, breakpoints of this type cannot be automatically grouped by type.
</documentation>
- <appInfo>
+ <appinfo>
<meta.attribute translatable="true"/>
- </appInfo>
+ </appinfo>
</annotation>
</attribute>
</complexType>
</element>
<annotation>
- <appInfo>
+ <appinfo>
<meta.section type="examples"/>
- </appInfo>
+ </appinfo>
<documentation>
The following is an example of a launch configuration type extension point:
@@ -103,18 +106,21 @@ There is an associated marker definition for &quot;com.example.ExampleBreakpoint
</annotation>
<annotation>
- <appInfo>
+ <appinfo>
<meta.section type="apiInfo"/>
- </appInfo>
+ </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;org.eclipse.debug.core.model.IBreakpoint&lt;/b&gt;.
</documentation>
</annotation>
+
+
+
<annotation>
- <appInfo>
+ <appinfo>
<meta.section type="copyright"/>
- </appInfo>
+ </appinfo>
<documentation>
Copyright (c) 2000, 2005 IBM Corporation and others.&lt;br&gt;
All rights reserved. This program and the accompanying materials are made
diff --git a/org.eclipse.debug.core/schema/launchDelegates.exsd b/org.eclipse.debug.core/schema/launchDelegates.exsd
index 978516fb7..e574d7d8c 100644
--- a/org.eclipse.debug.core/schema/launchDelegates.exsd
+++ b/org.eclipse.debug.core/schema/launchDelegates.exsd
@@ -90,6 +90,9 @@ This attribute can be used in conjunction with &lt;code&gt;modeCombination&lt;/c
<documentation>
identifier of an existing launch configuration type that this launch delegate is capable of launching.
</documentation>
+ <appinfo>
+ <meta.attribute kind="identifier" basedOn="org.eclipse.debug.core.launchConfigurationTypes/launchConfigurationType/@id"/>
+ </appinfo>
</annotation>
</attribute>
<attribute name="sourcePathComputerId" type="string">

Back to the top