Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.ui.intro/schema/config.exsd65
1 files changed, 33 insertions, 32 deletions
diff --git a/org.eclipse.ui.intro/schema/config.exsd b/org.eclipse.ui.intro/schema/config.exsd
index ef4d01182..2b99700ca 100644
--- a/org.eclipse.ui.intro/schema/config.exsd
+++ b/org.eclipse.ui.intro/schema/config.exsd
@@ -1,10 +1,10 @@
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
-<schema targetNamespace="org.eclipse.ui.intro">
+<schema targetNamespace="org.eclipse.ui.intro" xmlns="http://www.w3.org/2001/XMLSchema">
<annotation>
- <appInfo>
+ <appinfo>
<meta.schema plugin="org.eclipse.ui.intro" id="config" name="Intro Part Configuration"/>
- </appInfo>
+ </appinfo>
<documentation>
This extension point is used to register an intro configuration. This configuration provides presentation implementations and content for a given intro contribution. An intro appears when the workbench is first launched and as a choice from the &quot;Help&quot; menu. The intro is typically used to introduce a user to a product built on Eclipse.
&lt;p&gt;
@@ -16,6 +16,11 @@ The intros are organized into pages which usually reflect a particular category
<include schemaLocation="IntroContent.exsd"/>
<element name="extension">
+ <annotation>
+ <appinfo>
+ <meta.element />
+ </appinfo>
+ </annotation>
<complexType>
<sequence minOccurs="1" maxOccurs="unbounded">
<element ref="config"/>
@@ -39,9 +44,9 @@ The intros are organized into pages which usually reflect a particular category
<documentation>
an optional name of the extension instance
</documentation>
- <appInfo>
+ <appinfo>
<meta.attribute translatable="true"/>
- </appInfo>
+ </appinfo>
</annotation>
</attribute>
</complexType>
@@ -78,9 +83,9 @@ The intro content file is an XML file that describes the pages, groups and links
an intro content file. The content file is an XML file that contains the specifics of the intro (&lt;a href=&quot;introContentFileSpec.html&quot;&gt;intro content file format specification)&lt;/a&gt;.
The content file is parsed at run time by the intro framework. Based on the settings in this file, a certain number of pages, groups, and links are shown to the user when the intro is opened.
</documentation>
- <appInfo>
+ <appinfo>
<meta.attribute kind="resource"/>
- </appInfo>
+ </appinfo>
</annotation>
</attribute>
<attribute name="configurer" type="string">
@@ -88,9 +93,9 @@ The content file is parsed at run time by the intro framework. Based on the sett
<documentation>
a name of the fully qualified class that provides for dynamic aspects of the intro configuration. This class can provide values of the substitution variables, children of the dynamic groups and resolve incomplete target paths. The class must extend &lt;code&gt;org.eclipse.ui.intro.IntroConfigurer&lt;/code&gt;.
</documentation>
- <appInfo>
+ <appinfo>
<meta.attribute kind="java" basedOn="org.eclipse.ui.intro.config.IntroConfigurer"/>
- </appInfo>
+ </appinfo>
</annotation>
</attribute>
</complexType>
@@ -229,9 +234,9 @@ The content file is parsed at run time by the intro framework. Based on the sett
<element name="shortcut">
<annotation>
- <appInfo>
+ <appinfo>
<meta.element labelAttribute="tooltip" icon="icon"/>
- </appInfo>
+ </appinfo>
<documentation>
a button will be created in the intro launch bar for each shortcut element. The URL defined in the shortcut will be executed when the button is pressed. since 3.1
</documentation>
@@ -249,9 +254,9 @@ The content file is parsed at run time by the intro framework. Based on the sett
<documentation>
a relative path to the image icon that should be used for this shortcut in the intro launch bar.
</documentation>
- <appInfo>
+ <appinfo>
<meta.attribute kind="resource"/>
- </appInfo>
+ </appinfo>
</annotation>
</attribute>
<attribute name="url" type="string" use="required">
@@ -266,15 +271,11 @@ The content file is parsed at run time by the intro framework. Based on the sett
<element name="handle">
<annotation>
- <appInfo>
+ <appinfo>
<meta.element deprecated="true"/>
- </appInfo>
+ </appinfo>
<documentation>
- an optional element that controls how launch bar handle is rendered. since 3.1.
-
-Workbench has improved support work workbench window trims, so this
- trim-specific support is left the workbench. The handle is now
-part of all trim parts.
+ an optional element that controls how launch bar handle is rendered. since 3.1. Deprecated because the workbench now handles all aspects of window trim.
</documentation>
</annotation>
<complexType>
@@ -290,27 +291,27 @@ part of all trim parts.
<documentation>
a plug-in-relative path of the branding image to be tiled on the handle.
</documentation>
- <appInfo>
+ <appinfo>
<meta.attribute kind="resource"/>
- </appInfo>
+ </appinfo>
</annotation>
</attribute>
</complexType>
</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>
Here is a sample usage of the config extension point.
&lt;p&gt;
@@ -342,27 +343,27 @@ part of all trim parts.
</annotation>
<annotation>
- <appInfo>
+ <appinfo>
<meta.section type="apiInfo"/>
- </appInfo>
+ </appinfo>
<documentation>
For further details see the spec for the org.eclipse.ui.intro.config API package.
</documentation>
</annotation>
<annotation>
- <appInfo>
+ <appinfo>
<meta.section type="implementation"/>
- </appInfo>
+ </appinfo>
<documentation>
The intro contributed by the org.eclipse.platform plugin is the only implementation within Eclipse.
</documentation>
</annotation>
<annotation>
- <appInfo>
+ <appinfo>
<meta.section type="copyright"/>
- </appInfo>
+ </appinfo>
<documentation>
Copyright (c) 2004, 2006 IBM Corporation and others.&lt;br&gt;
All rights reserved. This program and the accompanying materials are made

Back to the top