Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Ryall2007-03-28 23:29:04 +0000
committerKen Ryall2007-03-28 23:29:04 +0000
commit02af47ffb61180e98add9018ab5f4fa1c846b467 (patch)
treee05dd68c949ee9b8c5d23bf194c9bb15fbd3fd75 /debug/org.eclipse.cdt.debug.ui/schema
parent009e53df106ebabd471900887e3ea48c440df486 (diff)
downloadorg.eclipse.cdt-02af47ffb61180e98add9018ab5f4fa1c846b467.tar.gz
org.eclipse.cdt-02af47ffb61180e98add9018ab5f4fa1c846b467.tar.xz
org.eclipse.cdt-02af47ffb61180e98add9018ab5f4fa1c846b467.zip
Bug 118308 support for breakpoint actions.
Diffstat (limited to 'debug/org.eclipse.cdt.debug.ui/schema')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/schema/BreakpointActionPage.exsd103
1 files changed, 103 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/schema/BreakpointActionPage.exsd b/debug/org.eclipse.cdt.debug.ui/schema/BreakpointActionPage.exsd
new file mode 100644
index 00000000000..684aaed6e6a
--- /dev/null
+++ b/debug/org.eclipse.cdt.debug.ui/schema/BreakpointActionPage.exsd
@@ -0,0 +1,103 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!-- Schema file written by PDE -->
+<schema targetNamespace="org.eclipse.cdt.debug.ui">
+<annotation>
+ <appInfo>
+ <meta.schema plugin="org.eclipse.cdt.debug.ui" id="breakpointActionPage" name="Breakpoint Action UI Page"/>
+ </appInfo>
+ <documentation>
+ This extension point provides a mechanism for contributing UI to define and edit a breakpoint action.
+ </documentation>
+ </annotation>
+
+ <element name="extension">
+ <complexType>
+ <sequence>
+ <element ref="actionPage"/>
+ </sequence>
+ <attribute name="point" type="string" use="required">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="actionPage">
+ <complexType>
+ <attribute name="id" type="string">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="class" type="string">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="actionType" type="string">
+ <annotation>
+ <documentation>
+
+ </documentation>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="since"/>
+ </appInfo>
+ <documentation>
+ 1.1
+ </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>
+ Value of the attribute class must be a fully qualified name of a Java class that implements the interface org.eclipse.cdt.debug.ui.ICDebuggerPage.
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="implementation"/>
+ </appInfo>
+ <documentation>
+
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appInfo>
+ <meta.section type="copyright"/>
+ </appInfo>
+ <documentation>
+ Copyright (c) 2007 Nokia and others.
+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
+http://www.eclipse.org/legal/epl-v10.html
+ </documentation>
+ </annotation>
+
+</schema>

Back to the top