Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.engine/schema')
-rw-r--r--bundles/org.eclipse.equinox.p2.engine/schema/touchpoints.exsd58
1 files changed, 35 insertions, 23 deletions
diff --git a/bundles/org.eclipse.equinox.p2.engine/schema/touchpoints.exsd b/bundles/org.eclipse.equinox.p2.engine/schema/touchpoints.exsd
index 12534af9c..12a2d81c7 100644
--- a/bundles/org.eclipse.equinox.p2.engine/schema/touchpoints.exsd
+++ b/bundles/org.eclipse.equinox.p2.engine/schema/touchpoints.exsd
@@ -2,19 +2,19 @@
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.equinox.p2.engine" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
- <appinfo>
+ <appInfo>
<meta.schema plugin="org.eclipse.equinox.p2.engine" id="touchpoints" name="Touchpoints"/>
- </appinfo>
+ </appInfo>
<documentation>
- [Enter description of this extension point.]
+ Touchpoints are the provisioning system&apos;s interface to some part of the environment in which installable units are being installed. Defining a new touchpoint allows you to &quot;teach&quot; the provisioning system how to interact with some aspect of the environment (an operating system, another native application, etc).
</documentation>
</annotation>
<element name="extension">
<annotation>
- <appinfo>
+ <appInfo>
<meta.element />
- </appinfo>
+ </appInfo>
</annotation>
<complexType>
<sequence>
@@ -39,9 +39,9 @@
<documentation>
</documentation>
- <appinfo>
+ <appInfo>
<meta.attribute translatable="true"/>
- </appinfo>
+ </appInfo>
</annotation>
</attribute>
</complexType>
@@ -68,9 +68,9 @@
<documentation>
</documentation>
- <appinfo>
- <meta.attribute kind="java" basedOn="org.eclipse.equinox.p2.engine.ITouchpoint"/>
- </appinfo>
+ <appInfo>
+ <meta.attribute kind="java" basedOn="org.eclipse.equinox.internal.provisional.p2.engine.Touchpoint:"/>
+ </appInfo>
</annotation>
</attribute>
<attribute name="description" type="string">
@@ -84,25 +84,25 @@
</element>
<annotation>
- <appinfo>
+ <appInfo>
<meta.section type="since"/>
- </appinfo>
+ </appInfo>
<documentation>
- [Enter the first release in which this extension point appears.]
+ @since org.eclipse.equinox.p2.engine 1.0
</documentation>
</annotation>
<annotation>
- <appinfo>
+ <appInfo>
<meta.section type="examples"/>
- </appinfo>
+ </appInfo>
<documentation>
&lt;p&gt;
&lt;pre&gt;
- &lt;extension point=&quot;org.eclipse.equinox.p2.engine.installAdaptors&quot; id=&quot;eclipse&quot; name=&quot;Eclipse Install Adaptor&quot;&gt;
+ &lt;extension point=&quot;org.eclipse.equinox.p2.engine.touchpoints&quot; id=&quot;eclipse&quot; name=&quot;My Touchpoint&quot;&gt;
&lt;installAdaptor
type=&quot;eclipse&quot;
- class=&quot;org.eclipse.equinox.internal.p2.eclipseAdaptor.EclipseInstallAdaptor&quot;
+ class=&quot;com.xyz.MyTouchpoint&quot;
version=&quot;1.0.0&quot;/&gt;
&lt;/extension&gt;
&lt;/pre&gt;
@@ -111,22 +111,34 @@
</annotation>
<annotation>
- <appinfo>
+ <appInfo>
<meta.section type="apiInfo"/>
- </appinfo>
+ </appInfo>
<documentation>
- [Enter API information here.]
+ Touchpoint implementations must extend org.eclipse.equinox.internal.provisional.p2.engine.Touchpoint.
</documentation>
</annotation>
<annotation>
- <appinfo>
+ <appInfo>
<meta.section type="implementation"/>
- </appinfo>
+ </appInfo>
<documentation>
- [Enter information about supplied implementation of this extension point.]
+ The platform provides touchpoint implementations for interacting with the operating system (org.eclipse.equinox.p2.native) and the OSGi framework (org.eclipse.equinox.p2.osgi).
</documentation>
</annotation>
+ <annotation>
+ <appInfo>
+ <meta.section type="copyright"/>
+ </appInfo>
+ <documentation>
+ Copyright (c) 2008, 2009 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
+&lt;a href=&quot;http://www.eclipse.org/legal/epl-v10.html&quot;&gt;http://www.eclipse.org/legal/epl-v10.html&lt;/a&gt;
+ </documentation>
+ </annotation>
</schema>

Back to the top