Skip to main content
summaryrefslogtreecommitdiffstats
blob: c55436b407b7a518f30f2e3dc3aad9b53b83b617 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<?xml version='1.0' encoding='UTF-8'?>
<!-- Schema file written by PDE -->
<schema targetNamespace="org.eclipse.jst.jsf.common.ui">
<annotation>
      <appInfo>
         <meta.schema plugin="org.eclipse.jst.jsf.common.ui" id="overviewPage" name="Overview Page"/>
      </appInfo>
      <documentation>
         The purpose of this extension point is to allow plug-ins to describe the contents and links on a overview page of an editor.
      </documentation>
   </annotation>

   <element name="extension">
      <complexType>
         <sequence>
            <element ref="overviewpage"/>
         </sequence>
         <attribute name="point" type="string" use="required">
            <annotation>
               <documentation>
                  a fully qualified identifier of the target extension point.
               </documentation>
            </annotation>
         </attribute>
         <attribute name="id" type="string" use="required">
            <annotation>
               <documentation>
                  identifier of the extension instance, this should be the same as the editor id.
               </documentation>
            </annotation>
         </attribute>
         <attribute name="name" type="string">
            <annotation>
               <documentation>
                  an optional name of the extension instance. Normally this is the editor name.
               </documentation>
            </annotation>
         </attribute>
      </complexType>
   </element>

   <element name="overviewpage">
      <annotation>
         <documentation>
            The details for an overview page for a specific plugins editor
         </documentation>
      </annotation>
      <complexType>
         <sequence>
            <element ref="overviewelement" minOccurs="1" maxOccurs="unbounded"/>
         </sequence>
         <attribute name="name" type="string" use="required">
            <annotation>
               <documentation>
                  The name of the page.
               </documentation>
            </annotation>
         </attribute>
         <attribute name="description" type="string">
            <annotation>
               <documentation>
                  A description for the page.
               </documentation>
            </annotation>
         </attribute>
      </complexType>
   </element>

   <element name="overviewelement">
      <annotation>
         <documentation>
            An element that make up a section of the page. Elements can contain Headers, Hyperlinks, Icons and text.
         </documentation>
      </annotation>
      <complexType>
         <attribute name="icon" type="string">
            <annotation>
               <documentation>
                  An icon to display in the element. The icon should be 72x72 and will appear to the left of the headers, hyperlinks and text
               </documentation>
               <appInfo>
                  <meta.attribute kind="resource"/>
               </appInfo>
            </annotation>
         </attribute>
         <attribute name="heading" type="string">
            <annotation>
               <documentation>
                  A short heading for the element (optional)
               </documentation>
            </annotation>
         </attribute>
         <attribute name="text" type="string">
            <annotation>
               <documentation>
                  The text description for the element
               </documentation>
            </annotation>
         </attribute>
         <attribute name="hyperlink" type="string">
            <annotation>
               <documentation>
                  A hyperlink associated with the element. The hyperlink would normally execute the hyperlinkaction action
               </documentation>
            </annotation>
         </attribute>
         <attribute name="hyperlinkaction" type="string">
            <annotation>
               <documentation>
                  The action associated with the hyperlink. This is an action that will be executed when the hyperlink is selected
               </documentation>
               <appInfo>
                  <meta.attribute kind="java"/>
               </appInfo>
            </annotation>
         </attribute>
         <attribute name="actionparameters" type="string">
            <annotation>
               <documentation>
                  Can be used to pass one or more parameters to the hyperlink action. Parameter must be space separated (optional)
               </documentation>
            </annotation>
         </attribute>
      </complexType>
   </element>

   <annotation>
      <appInfo>
         <meta.section type="since"/>
      </appInfo>
      <documentation>
         1.0.0
      </documentation>
   </annotation>

   <annotation>
      <appInfo>
         <meta.section type="examples"/>
      </appInfo>
      <documentation>
         &lt;extension
         id=&quot;org.eclipse.jst.jsf.facesconfig.ui.pageflow.PageflowEditor&quot;
         name=&quot;%pageflow.editor.intro.name&quot;
         point=&quot;org.eclipse.jst.jsf.facesconfig.ui.page.overviewPage&quot;&gt;
      &lt;overviewpage
            name=&quot;%pageflow.editor.intro.name&quot;
            description=&quot;%port.editor.intro.description&quot;&gt;
         &lt;overviewelement
               icon=&quot;icons/pageflow_72.gif&quot;
               heading=&quot;%pageflow.editor.intro.heading&quot;
               text=&quot;%pageflow.editor.intro.description&quot;&gt;
         &lt;/overviewelement&gt;
         &lt;overviewelement
               actionparameters=&quot;Pageflow.designerCheatSheet&quot;
               icon=&quot;icons/tutorials_72.gif&quot;
               hyperlinkaction=&quot;org.eclipse.jst.jsf.common.ui.actions.LoadCheatSheetAction&quot;
               text=&quot;%pageflow.editor.intro.cheatsheets.text&quot;
               hyperlink=&quot;%pageflow.editor.intro.cheatsheets.link&quot;&gt;
         &lt;/overviewelement&gt;
         &lt;overviewelement
               actionparameters=&quot;http://www.eclipse.org&quot;
               icon=&quot;icons/overview_72.gif&quot;
               hyperlinkaction=&quot;org.eclipse.jst.jsf.common.ui.actions.LoadHelpAction&quot;
               text=&quot;%pageflow.editor.intro.help.text&quot;
               hyperlink=&quot;%pageflow.editor.intro.help.link&quot;&gt;
         &lt;/overviewelement&gt;
         &lt;overviewelement
               actionparameters=&quot;overview&quot;
               icon=&quot;icons/gotoeditor_72.gif&quot;
               hyperlinkaction=&quot;org.eclipse.jst.jsf.common.ui.actions.OpenPageAction&quot;
               text=&quot;%pageflow.editor.intro.start.text&quot;
               hyperlink=&quot;%pageflow.editor.intro.start.link&quot;&gt;
         &lt;/overviewelement&gt;
      &lt;/overviewpage&gt;
   &lt;/extension&gt;
      </documentation>
   </annotation>

   <annotation>
      <appInfo>
         <meta.section type="apiInfo"/>
      </appInfo>
      <documentation>
         
      </documentation>
   </annotation>

   <annotation>
      <appInfo>
         <meta.section type="implementation"/>
      </appInfo>
      <documentation>
         
      </documentation>
   </annotation>

   <annotation>
      <appInfo>
         <meta.section type="copyright"/>
      </appInfo>
      <documentation>
         Copyright (c) 2004, 2006 Sybase, Inc. and others. &lt;br&gt;
 All rights reserved. This program and the accompanying materials &lt;br&gt;
 are made available under the terms of the Eclipse Public License v1.0 &lt;br&gt;
 which accompanies this distribution, and is available at &lt;br&gt;
 http://www.eclipse.org/legal/epl-v10.html &lt;br&gt;
 
  Contributors: &lt;br&gt;
      Sybase, Inc. - initial API and implementation &lt;br&gt;
      </documentation>
   </annotation>

</schema>

Back to the top