Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Schwarz2012-10-22 10:34:01 +0000
committerTobias Schwarz2012-10-22 10:34:38 +0000
commit3f6109bedbf34e43ec86e2c6202db8ec7fc697ae (patch)
treee4b2d694eb894171f46d03db105b6162d09f053a /target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/schema/variableProviders.exsd
parent12af7faaa3b155d79fded5aa33eab7c25f005946 (diff)
downloadorg.eclipse.tcf-3f6109bedbf34e43ec86e2c6202db8ec7fc697ae.tar.gz
org.eclipse.tcf-3f6109bedbf34e43ec86e2c6202db8ec7fc697ae.tar.xz
org.eclipse.tcf-3f6109bedbf34e43ec86e2c6202db8ec7fc697ae.zip
[Target Explorer] variable delegates and provider für persistence
delegates
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/schema/variableProviders.exsd')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/schema/variableProviders.exsd118
1 files changed, 118 insertions, 0 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/schema/variableProviders.exsd b/target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/schema/variableProviders.exsd
new file mode 100644
index 000000000..ec35625a0
--- /dev/null
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.persistence/schema/variableProviders.exsd
@@ -0,0 +1,118 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!-- Schema file written by PDE -->
+<schema targetNamespace="org.eclipse.tcf.te.runtime.persistence" xmlns="http://www.w3.org/2001/XMLSchema">
+<annotation>
+ <appinfo>
+ <meta.schema plugin="org.eclipse.tcf.te.runtime.persistence" id="variableProviders" name="Variable Providers Extension Point"/>
+ </appinfo>
+ <documentation>
+ This extension point is used to declare the variable provider
+ </documentation>
+ </annotation>
+
+ <element name="extension">
+ <annotation>
+ <appinfo>
+ <meta.element />
+ </appinfo>
+ </annotation>
+ <complexType>
+ <sequence>
+ <element ref="provider" minOccurs="1" 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>
+ <appinfo>
+ <meta.attribute translatable="true"/>
+ </appinfo>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <element name="provider">
+ <annotation>
+ <documentation>
+ Declares a variable provider.
+ </documentation>
+ </annotation>
+ <complexType>
+ <attribute name="id" type="string" use="required">
+ <annotation>
+ <documentation>
+ The unique id of the variable provider contribution.
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="class" type="string" use="required">
+ <annotation>
+ <documentation>
+ The variable provider implementation.
+ </documentation>
+ <appinfo>
+ <meta.attribute kind="java" basedOn=":org.eclipse.tcf.te.runtime.persistence.interfaces.IVariableProvider"/>
+ </appinfo>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
+ <annotation>
+ <appinfo>
+ <meta.section type="since"/>
+ </appinfo>
+ <documentation>
+ Target Explorer 1.0.0
+ </documentation>
+ </annotation>
+
+ <annotation>
+ <appinfo>
+ <meta.section type="examples"/>
+ </appinfo>
+ <documentation>
+ &lt;pre&gt;
+ &lt;extension point=&quot;org.eclipse.tcf.te.runtime.persistence.variableProviders&quot;&gt;
+ &lt;provider
+ id=&quot;org.eclipse.tcf.te.runtime.persistence.delegate.VariableProvider&quot;
+ class=&quot;org.eclipse.tcf.te.runtime.persistence.internal.VariableProvider&quot;/&gt;
+ &lt;/extension&gt;
+&lt;/pre&gt;
+ </documentation>
+ </annotation>
+
+
+
+ <annotation>
+ <appinfo>
+ <meta.section type="copyright"/>
+ </appinfo>
+ <documentation>
+ Copyright (c) 2012 Wind River Systems, Inc. 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