Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2008-04-01 21:06:16 +0000
committerDarin Wright2008-04-01 21:06:16 +0000
commit6ca735a63b68b3b58e65a21e9d95f767a2b3d0da (patch)
tree89522330b253c51be7318677dfd8439c8c6bbbef /org.eclipse.debug.ui/schema/contextViewBindings.exsd
parent3b4998bc1d1b48363da625f832b290bceec2dbd7 (diff)
downloadeclipse.platform.debug-6ca735a63b68b3b58e65a21e9d95f767a2b3d0da.tar.gz
eclipse.platform.debug-6ca735a63b68b3b58e65a21e9d95f767a2b3d0da.tar.xz
eclipse.platform.debug-6ca735a63b68b3b58e65a21e9d95f767a2b3d0da.zip
Bug 220442 - adopt identifier attribute for schemas
Diffstat (limited to 'org.eclipse.debug.ui/schema/contextViewBindings.exsd')
-rw-r--r--org.eclipse.debug.ui/schema/contextViewBindings.exsd28
1 files changed, 18 insertions, 10 deletions
diff --git a/org.eclipse.debug.ui/schema/contextViewBindings.exsd b/org.eclipse.debug.ui/schema/contextViewBindings.exsd
index 0d8211fe2..f8d8bc2ad 100644
--- a/org.eclipse.debug.ui/schema/contextViewBindings.exsd
+++ b/org.eclipse.debug.ui/schema/contextViewBindings.exsd
@@ -1,10 +1,10 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
-<schema targetNamespace="org.eclipse.debug.ui">
+<schema targetNamespace="org.eclipse.debug.ui" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
- <appInfo>
+ <appinfo>
<meta.schema plugin="org.eclipse.debug.ui" id="contextViewBindings" name="Context View Bindings"/>
- </appInfo>
+ </appinfo>
<documentation>
This extension point provides a mechanism for associating a view with a context identifier. When a context is activated by the Debug view, views associated with it (and also views associated with any parent contexts) are opened, closed, or activated. Contributors have the option to override the automatic open and close behavior.
</documentation>
@@ -46,6 +46,9 @@
<documentation>
Specifies the context identifier that this binding is for.
</documentation>
+ <appinfo>
+ <meta.attribute kind="identifier" basedOn="org.eclipse.ui.contexts/context/@id"/>
+ </appinfo>
</annotation>
</attribute>
<attribute name="viewId" type="string" use="required">
@@ -54,6 +57,9 @@
Specifies the identifier of the view which should be associated with the specified context. When the specified context is enabled, this view will be automatically brought to the front. When elements are selected in the Debug view, contexts associated with those elements (as specified by extensions of the debugModelContextBindings extension point) are automatically enabled.
Note that this only occurs in perspectives for which the user has requested &quot;automatic view management&quot; via the preferences (by default, only in the Debug perspective).
</documentation>
+ <appinfo>
+ <meta.attribute kind="identifier" basedOn="org.eclipse.ui.views/view/@id"/>
+ </appinfo>
</annotation>
</attribute>
<attribute name="autoOpen" type="boolean">
@@ -75,18 +81,18 @@ Specifies whether the view should be automatically closed when the given context
</element>
<annotation>
- <appInfo>
+ <appinfo>
<meta.section type="since"/>
- </appInfo>
+ </appinfo>
<documentation>
3.0
</documentation>
</annotation>
<annotation>
- <appInfo>
+ <appinfo>
<meta.section type="examples"/>
- </appInfo>
+ </appinfo>
<documentation>
The following is an example of a context view binding contribution:
&lt;pre&gt;
@@ -104,12 +110,14 @@ In the above example, when a context with the specified identifier is activated
</documentation>
</annotation>
+
+
<annotation>
- <appInfo>
+ <appinfo>
<meta.section type="copyright"/>
- </appInfo>
+ </appinfo>
<documentation>
-Copyright (c) 2003, 2005 IBM Corporation and others.&lt;br&gt;
+ Copyright (c) 2003, 2005 IBM Corporation and others.&lt;br&gt;
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

Back to the top