VirtualBox

source: vbox/trunk/src/VBox/Main/idl/doxygen.xsl@ 98103

Last change on this file since 98103 was 98103, checked in by vboxsync, 20 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 20.7 KB
Line 
1<?xml version="1.0"?>
2
3<!--
4 * A template to generate a generic IDL file from the generic interface
5 * definition expressed in XML. The generated file is intended solely to
6 * generate the documentation using Doxygen.
7-->
8<!--
9 Copyright (C) 2006-2023 Oracle and/or its affiliates.
10
11 This file is part of VirtualBox base platform packages, as
12 available from https://www.virtualbox.org.
13
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License
16 as published by the Free Software Foundation, in version 3 of the
17 License.
18
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, see <https://www.gnu.org/licenses>.
26
27 SPDX-License-Identifier: GPL-3.0-only
28-->
29
30<xsl:stylesheet
31 version="1.0"
32 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
33 xmlns:str="http://xsltsl.org/string"
34 exclude-result-prefixes="str"
35>
36<!-- The exclude-result-prefixes attribute is needed since otherwise the <tt>
37 tag added for the ID in interface and enum descriptions would get the
38 namespace, confusing doxygen completely. -->
39
40<xsl:import href="string.xsl"/>
41
42<xsl:output method="html" indent="yes"/>
43
44<xsl:strip-space elements="*"/>
45
46
47<!--
48// Doxygen transformation rules
49/////////////////////////////////////////////////////////////////////////////
50-->
51
52<!--
53 * all text elements that are not explicitly matched are normalized
54 * (all whitespace chars are converted to single spaces)
55-->
56<!--xsl:template match="desc//text()">
57 <xsl:value-of select="concat(' ',normalize-space(.),' ')"/>
58</xsl:template-->
59
60<!--
61 * all elements that are not explicitly matched are considered to be html tags
62 * and copied w/o modifications
63-->
64<xsl:template match="desc//*">
65 <xsl:copy>
66 <xsl:apply-templates/>
67 </xsl:copy>
68</xsl:template>
69
70<!--
71 * special treatment of <tt>, making sure that Doxygen will not interpret its
72 * contents (assuming it is a leaf tag)
73-->
74<xsl:template match="desc//tt/text()">
75 <xsl:variable name="subst1">
76 <xsl:call-template name="str:subst">
77 <xsl:with-param name="text" select="." />
78 <xsl:with-param name="replace" select="'::'" />
79 <xsl:with-param name="with" select="'\::'" />
80 </xsl:call-template>
81 </xsl:variable>
82 <xsl:value-of select="$subst1"/>
83</xsl:template>
84
85<!--
86 * same like desc//* but place <ol> at start of line otherwise Doxygen will not
87 * find it
88-->
89<xsl:template match="desc//ol">
90 <xsl:text>&#x0A;</xsl:text>
91 <xsl:copy>
92 <xsl:apply-templates/>
93 </xsl:copy>
94</xsl:template>
95
96<!--
97 * same like desc//* but place <ul> at start of line otherwise Doxygen will not
98 * find it
99-->
100<xsl:template match="desc//ul">
101 <xsl:text>&#x0A;</xsl:text>
102 <xsl:copy>
103 <xsl:apply-templates/>
104 </xsl:copy>
105</xsl:template>
106
107<!--
108 * same like desc//* but place <pre> at start of line otherwise Doxygen will not
109 * find it
110-->
111<xsl:template match="desc//pre">
112 <xsl:text>&#x0A;</xsl:text>
113 <xsl:copy>
114 <xsl:apply-templates/>
115 </xsl:copy>
116</xsl:template>
117
118<!--
119 * paragraph
120-->
121<xsl:template match="desc//p">
122 <xsl:text>&#x0A;</xsl:text>
123 <xsl:apply-templates/>
124 <xsl:text>&#x0A;</xsl:text>
125</xsl:template>
126
127<!--
128 * link
129-->
130<xsl:template match="desc//link">
131 <xsl:text>@link </xsl:text>
132 <!--
133 * sometimes Doxygen is stupid and cannot resolve global enums properly,
134 * thinking they are members of the current class. Fix it by adding ::
135 * in front of any @to value that doesn't start with #.
136 -->
137 <xsl:choose>
138 <xsl:when test="not(starts-with(@to, '#')) and not(contains(@to, '::'))">
139 <xsl:text>::</xsl:text>
140 </xsl:when>
141 </xsl:choose>
142 <!--
143 * Doxygen doesn't understand autolinks like Class::func() if Class
144 * doesn't actually contain a func with no arguments. Fix it.
145 -->
146 <xsl:choose>
147 <xsl:when test="substring(@to, string-length(@to)-1)='()'">
148 <xsl:value-of select="substring-before(@to, '()')"/>
149 </xsl:when>
150 <xsl:otherwise>
151 <xsl:value-of select="@to"/>
152 </xsl:otherwise>
153 </xsl:choose>
154 <xsl:text> </xsl:text>
155 <xsl:choose>
156 <xsl:when test="normalize-space(text())">
157 <xsl:value-of select="normalize-space(text())"/>
158 </xsl:when>
159 <xsl:otherwise>
160 <xsl:choose>
161 <xsl:when test="starts-with(@to, '#')">
162 <xsl:value-of select="substring-after(@to, '#')"/>
163 </xsl:when>
164 <xsl:when test="starts-with(@to, '::')">
165 <xsl:value-of select="substring-after(@to, '::')"/>
166 </xsl:when>
167 <xsl:otherwise>
168 <xsl:value-of select="@to"/>
169 </xsl:otherwise>
170 </xsl:choose>
171 </xsl:otherwise>
172 </xsl:choose>
173 <xsl:text>@endlink</xsl:text>
174 <!--
175 * insert a dummy empty B element to distinctly separate @endlink
176 * from the following text
177 -->
178 <xsl:element name="b"/>
179</xsl:template>
180
181<!--
182 * note
183-->
184<xsl:template match="desc/note">
185 <xsl:if test="not(@internal='yes')">
186 <xsl:text>&#x0A;@note </xsl:text>
187 <xsl:apply-templates/>
188 <xsl:text>&#x0A;</xsl:text>
189 </xsl:if>
190</xsl:template>
191
192<!--
193 * see
194-->
195<xsl:template match="desc/see">
196 <xsl:text>&#x0A;@see </xsl:text>
197 <xsl:apply-templates/>
198 <xsl:text>&#x0A;</xsl:text>
199</xsl:template>
200
201
202<!--
203 * common comment prologue (handles group IDs)
204-->
205<xsl:template match="desc" mode="begin">
206 <xsl:param name="id" select="@group | preceding::descGroup[1]/@id"/>
207 <xsl:text>/**&#x0A;</xsl:text>
208 <xsl:if test="$id">
209 <xsl:value-of select="concat(' @ingroup ',$id,'&#x0A;')"/>
210 </xsl:if>
211</xsl:template>
212
213<!--
214 * common brief comment prologue (handles group IDs)
215-->
216<xsl:template match="desc" mode="begin_brief">
217 <xsl:param name="id" select="@group | preceding::descGroup[1]/@id"/>
218 <xsl:text>/**&#x0A;</xsl:text>
219 <xsl:if test="$id">
220 <xsl:value-of select="concat(' @ingroup ',$id,'&#x0A;')"/>
221 </xsl:if>
222 <xsl:text> @brief&#x0A;</xsl:text>
223</xsl:template>
224
225<!--
226 * common middle part of the comment block
227-->
228<xsl:template match="desc" mode="middle">
229 <xsl:apply-templates select="text() | *[not(self::note or self::see)]"/>
230 <xsl:apply-templates select="note"/>
231 <xsl:apply-templates select="see"/>
232</xsl:template>
233
234<!--
235 * result part of the comment block
236-->
237<xsl:template match="desc" mode="results">
238 <xsl:if test="result">
239 <xsl:text>
240@par Expected result codes:
241 </xsl:text>
242 <table>
243 <xsl:for-each select="result">
244 <tr>
245 <xsl:choose>
246 <xsl:when test="ancestor::library/result[@name=current()/@name]">
247 <td><xsl:value-of select=
248 "concat('@link ::',@name,' ',@name,' @endlink')"/></td>
249 </xsl:when>
250 <xsl:otherwise>
251 <td><xsl:value-of select="@name"/></td>
252 </xsl:otherwise>
253 </xsl:choose>
254 <td>
255 <xsl:apply-templates select="text() | *[not(self::note or self::see or
256 self::result)]"/>
257 </td>
258 </tr>
259 </xsl:for-each>
260 </table>
261 </xsl:if>
262</xsl:template>
263
264
265<!--
266 * comment for interfaces
267-->
268<xsl:template match="interface/desc">
269 <xsl:apply-templates select="." mode="begin"/>
270 <xsl:apply-templates select="." mode="middle"/>
271@par Interface ID:
272<tt>{<xsl:call-template name="str:to-upper">
273 <xsl:with-param name="text" select="../@uuid"/>
274 </xsl:call-template>}</tt>
275 <xsl:text>&#x0A;*/&#x0A;</xsl:text>
276</xsl:template>
277
278<!--
279 * comment for attributes
280-->
281<xsl:template match="attribute/desc">
282 <xsl:apply-templates select="." mode="begin"/>
283 <xsl:apply-templates select="text() | *[not(self::note or self::see or self::result)]"/>
284 <xsl:apply-templates select="." mode="results"/>
285 <xsl:apply-templates select="note"/>
286 <xsl:if test="../@mod='ptr'">
287 <xsl:text>
288
289@warning This attribute is non-scriptable. In particular, this also means that an
290attempt to get or set it from a process other than the process that has created and
291owns the object will most likely fail or crash your application.
292</xsl:text>
293 </xsl:if>
294 <xsl:apply-templates select="see"/>
295 <xsl:text>&#x0A;*/&#x0A;</xsl:text>
296</xsl:template>
297
298<!--
299 * comment for methods
300-->
301<xsl:template match="method/desc">
302 <xsl:apply-templates select="." mode="begin"/>
303 <xsl:apply-templates select="text() | *[not(self::note or self::see or self::result)]"/>
304 <xsl:for-each select="../param">
305 <xsl:apply-templates select="desc"/>
306 </xsl:for-each>
307 <xsl:apply-templates select="." mode="results"/>
308 <xsl:apply-templates select="note"/>
309 <xsl:apply-templates select="../param/desc/note"/>
310 <xsl:if test="../param/@mod='ptr'">
311 <xsl:text>
312
313@warning This method is non-scriptable. In particular, this also means that an
314attempt to call it from a process other than the process that has created and
315owns the object will most likely fail or crash your application.
316</xsl:text>
317 </xsl:if>
318 <xsl:apply-templates select="see"/>
319 <xsl:text>&#x0A;*/&#x0A;</xsl:text>
320</xsl:template>
321
322<!--
323 * comment for method parameters
324-->
325<xsl:template match="method/param/desc">
326 <xsl:text>&#x0A;@param </xsl:text>
327 <xsl:value-of select="../@name"/>
328 <xsl:text> </xsl:text>
329 <xsl:apply-templates select="text() | *[not(self::note or self::see)]"/>
330 <xsl:text>&#x0A;</xsl:text>
331</xsl:template>
332
333<!--
334 * comment for enums
335-->
336<xsl:template match="enum/desc">
337 <xsl:apply-templates select="." mode="begin"/>
338 <xsl:apply-templates select="." mode="middle"/>
339@par Interface ID:
340<tt>{<xsl:call-template name="str:to-upper">
341 <xsl:with-param name="text" select="../@uuid"/>
342 </xsl:call-template>}</tt>
343 <xsl:text>&#x0A;*/&#x0A;</xsl:text>
344</xsl:template>
345
346<!--
347 * comment for enum values
348-->
349<xsl:template match="enum/const/desc">
350 <xsl:apply-templates select="." mode="begin_brief"/>
351 <xsl:apply-templates select="." mode="middle"/>
352 <xsl:text>&#x0A;*/&#x0A;</xsl:text>
353</xsl:template>
354
355<!--
356 * comment for result codes
357-->
358<xsl:template match="result/desc">
359 <xsl:apply-templates select="." mode="begin_brief"/>
360 <xsl:apply-templates select="." mode="middle"/>
361 <xsl:text>&#x0A;*/&#x0A;</xsl:text>
362</xsl:template>
363
364<!--
365 * ignore descGroups by default (processed in /idl)
366-->
367<xsl:template match="descGroup"/>
368
369<!--
370// templates
371/////////////////////////////////////////////////////////////////////////////
372-->
373
374
375<!--
376 * header
377-->
378<xsl:template match="/idl">
379/*
380 * DO NOT EDIT! This is a generated file.
381 *
382 * Doxygen IDL definition for VirtualBox Main API (COM interfaces)
383 * generated from XIDL (XML interface definition).
384 *
385 * Source : src/VBox/Main/idl/VirtualBox.xidl
386 * Generator : src/VBox/Main/idl/doxygen.xsl
387 *
388 * This IDL is generated using some generic OMG IDL-like syntax SOLELY
389 * for the purpose of generating the documentation using Doxygen and
390 * is not syntactically valid.
391 *
392 * DO NOT USE THIS HEADER IN ANY OTHER WAY!
393 */
394
395 <!-- general description -->
396 <xsl:text>/** @mainpage &#x0A;</xsl:text>
397 <xsl:apply-templates select="desc" mode="middle"/>
398 <xsl:text>&#x0A;*/&#x0A;</xsl:text>
399
400 <!-- group (module) definitions -->
401 <xsl:for-each select="//descGroup">
402 <xsl:if test="@id and (@title or desc)">
403 <xsl:value-of select="concat('/** @defgroup ',@id,' ',@title)"/>
404 <xsl:apply-templates select="desc" mode="middle"/>
405 <xsl:text>&#x0A;*/&#x0A;</xsl:text>
406 </xsl:if>
407 </xsl:for-each>
408
409 <!-- everything else -->
410 <xsl:apply-templates select="*[not(self::desc)]"/>
411
412</xsl:template>
413
414
415<!--
416 * accept all <if>s
417-->
418<xsl:template match="if">
419 <xsl:apply-templates/>
420</xsl:template>
421
422
423<!--
424 * cpp_quote (ignore)
425-->
426<xsl:template match="cpp">
427</xsl:template>
428
429
430<!--
431 * #ifdef statement (@if attribute)
432-->
433<xsl:template match="@if" mode="begin">
434 <xsl:text>#if </xsl:text>
435 <xsl:value-of select="."/>
436 <xsl:text>&#x0A;</xsl:text>
437</xsl:template>
438<xsl:template match="@if" mode="end">
439 <xsl:text>#endif&#x0A;</xsl:text>
440</xsl:template>
441
442
443<!--
444 * libraries
445-->
446<xsl:template match="application">
447 <!-- result codes -->
448 <xsl:for-each select="result">
449 <xsl:apply-templates select="."/>
450 </xsl:for-each>
451 <!-- all enums go first -->
452 <xsl:apply-templates select="enum | if/enum"/>
453 <!-- everything else but result codes and enums -->
454 <xsl:apply-templates select="*[not(self::result or self::enum) and
455 not(self::if[result] or self::if[enum])]"/>
456</xsl:template>
457
458
459<!--
460 * result codes
461-->
462<xsl:template match="application//result">
463 <xsl:apply-templates select="@if" mode="begin"/>
464 <xsl:apply-templates select="desc"/>
465 <xsl:value-of select="concat('const HRESULT ',@name,' = ',@value,';')"/>
466 <xsl:text>&#x0A;</xsl:text>
467 <xsl:apply-templates select="@if" mode="end"/>
468</xsl:template>
469
470
471<!--
472 * interfaces
473-->
474<xsl:template match="interface">
475 <xsl:apply-templates select="desc"/>
476 <xsl:text>interface </xsl:text>
477 <xsl:value-of select="@name"/>
478 <xsl:text> : </xsl:text>
479 <xsl:value-of select="@extends"/>
480 <xsl:text>&#x0A;{&#x0A;</xsl:text>
481 <!-- attributes (properties) -->
482 <xsl:apply-templates select="attribute"/>
483 <!-- methods -->
484 <xsl:apply-templates select="method"/>
485 <!-- 'if' enclosed elements, unsorted -->
486 <xsl:apply-templates select="if"/>
487 <!-- -->
488 <xsl:text>}; /* interface </xsl:text>
489 <xsl:value-of select="@name"/>
490 <xsl:text> */&#x0A;&#x0A;</xsl:text>
491</xsl:template>
492
493
494<!--
495 * attributes
496-->
497<xsl:template match="interface//attribute">
498 <xsl:apply-templates select="@if" mode="begin"/>
499 <xsl:apply-templates select="desc"/>
500 <xsl:text> </xsl:text>
501 <xsl:if test="@readonly='yes'">
502 <xsl:text>readonly </xsl:text>
503 </xsl:if>
504 <xsl:text>attribute </xsl:text>
505 <xsl:apply-templates select="@type"/>
506 <xsl:text> </xsl:text>
507 <xsl:value-of select="@name"/>
508 <xsl:text>;&#x0A;</xsl:text>
509 <xsl:apply-templates select="@if" mode="end"/>
510 <xsl:text>&#x0A;</xsl:text>
511</xsl:template>
512
513<!--
514 * methods
515-->
516<xsl:template match="interface//method">
517 <xsl:apply-templates select="@if" mode="begin"/>
518 <xsl:apply-templates select="desc"/>
519 <xsl:text> void </xsl:text>
520 <xsl:value-of select="@name"/>
521 <xsl:if test="param">
522 <xsl:text> (&#x0A;</xsl:text>
523 <xsl:for-each select="param [position() != last()]">
524 <xsl:text> </xsl:text>
525 <xsl:apply-templates select="."/>
526 <xsl:text>,&#x0A;</xsl:text>
527 </xsl:for-each>
528 <xsl:text> </xsl:text>
529 <xsl:apply-templates select="param [last()]"/>
530 <xsl:text>&#x0A; );&#x0A;</xsl:text>
531 </xsl:if>
532 <xsl:if test="not(param)">
533 <xsl:text>();&#x0A;</xsl:text>
534 </xsl:if>
535 <xsl:apply-templates select="@if" mode="end"/>
536 <xsl:text>&#x0A;</xsl:text>
537</xsl:template>
538
539
540<!--
541 * co-classes
542-->
543<xsl:template match="module/class">
544 <!-- class and contract id: later -->
545 <!-- CLSID_xxx declarations for XPCOM, for compatibility with Win32: later -->
546</xsl:template>
547
548
549<!--
550 * enums
551-->
552<xsl:template match="enum">
553 <xsl:apply-templates select="desc"/>
554 <xsl:text>enum </xsl:text>
555 <xsl:value-of select="@name"/>
556 <xsl:text>&#x0A;{&#x0A;</xsl:text>
557 <xsl:for-each select="const">
558 <xsl:apply-templates select="desc"/>
559 <xsl:text> </xsl:text>
560 <xsl:value-of select="../@name"/>
561 <xsl:text>_</xsl:text>
562 <xsl:value-of select="@name"/> = <xsl:value-of select="@value"/>
563 <xsl:text>,&#x0A;</xsl:text>
564 </xsl:for-each>
565 <xsl:text>};&#x0A;&#x0A;</xsl:text>
566</xsl:template>
567
568
569<!--
570 * method parameters
571-->
572<xsl:template match="method/param">
573 <xsl:choose>
574 <xsl:when test="@dir='in'">in </xsl:when>
575 <xsl:when test="@dir='out'">out </xsl:when>
576 <xsl:when test="@dir='return'">[retval] out </xsl:when>
577 <xsl:otherwise>in</xsl:otherwise>
578 </xsl:choose>
579 <xsl:apply-templates select="@type"/>
580 <xsl:text> </xsl:text>
581 <xsl:value-of select="@name"/>
582</xsl:template>
583
584
585<!--
586 * attribute/parameter type conversion
587-->
588<xsl:template match="attribute/@type | param/@type">
589 <xsl:variable name="self_target" select="current()/ancestor::if/@target"/>
590
591 <xsl:choose>
592 <!-- modifiers (ignored for 'enumeration' attributes)-->
593 <xsl:when test="name(current())='type' and ../@mod">
594 <xsl:choose>
595 <xsl:when test="../@mod='ptr'">
596 <xsl:choose>
597 <!-- standard types -->
598 <!--xsl:when test=".='result'">??</xsl:when-->
599 <xsl:when test=".='boolean'">booleanPtr</xsl:when>
600 <xsl:when test=".='octet'">octetPtr</xsl:when>
601 <xsl:when test=".='short'">shortPtr</xsl:when>
602 <xsl:when test=".='unsigned short'">ushortPtr</xsl:when>
603 <xsl:when test=".='long'">longPtr</xsl:when>
604 <xsl:when test=".='long long'">llongPtr</xsl:when>
605 <xsl:when test=".='unsigned long'">ulongPtr</xsl:when>
606 <xsl:when test=".='unsigned long long'">ullongPtr</xsl:when>
607 <xsl:otherwise>
608 <xsl:message terminate="yes">
609 <xsl:value-of select="concat(../../../@name,'::',../../@name,'::',../@name,': ')"/>
610 <xsl:text>attribute 'mod=</xsl:text>
611 <xsl:value-of select="concat('&quot;',../@mod,'&quot;')"/>
612 <xsl:text>' cannot be used with type </xsl:text>
613 <xsl:value-of select="concat('&quot;',current(),'&quot;!')"/>
614 </xsl:message>
615 </xsl:otherwise>
616 </xsl:choose>
617 </xsl:when>
618 <xsl:when test="../@mod='string'">
619 <xsl:choose>
620 <!-- standard types -->
621 <!--xsl:when test=".='result'">??</xsl:when-->
622 <xsl:when test=".='uuid'">wstringUUID</xsl:when>
623 <xsl:otherwise>
624 <xsl:message terminate="yes">
625 <xsl:value-of select="concat(../../../@name,'::',../../@name,'::',../@name,': ')"/>
626 <xsl:text>attribute 'mod=</xsl:text>
627 <xsl:value-of select="concat('&quot;',../@mod,'&quot;')"/>
628 <xsl:text>' cannot be used with type </xsl:text>
629 <xsl:value-of select="concat('&quot;',current(),'&quot;!')"/>
630 </xsl:message>
631 </xsl:otherwise>
632 </xsl:choose>
633 </xsl:when>
634 <xsl:otherwise>
635 <xsl:message terminate="yes">
636 <xsl:value-of select="concat(../../../@name,'::',../../@name,'::',../@name,': ')"/>
637 <xsl:value-of select="concat('value &quot;',../@mod,'&quot; ')"/>
638 <xsl:text>of attribute 'mod' is invalid!</xsl:text>
639 </xsl:message>
640 </xsl:otherwise>
641 </xsl:choose>
642 </xsl:when>
643 <!-- no modifiers -->
644 <xsl:otherwise>
645 <xsl:choose>
646 <!-- standard types -->
647 <xsl:when test=".='result'">result</xsl:when>
648 <xsl:when test=".='boolean'">boolean</xsl:when>
649 <xsl:when test=".='octet'">octet</xsl:when>
650 <xsl:when test=".='short'">short</xsl:when>
651 <xsl:when test=".='unsigned short'">unsigned short</xsl:when>
652 <xsl:when test=".='long'">long</xsl:when>
653 <xsl:when test=".='long long'">long long</xsl:when>
654 <xsl:when test=".='unsigned long'">unsigned long</xsl:when>
655 <xsl:when test=".='unsigned long long'">unsigned long long</xsl:when>
656 <xsl:when test=".='char'">char</xsl:when>
657 <xsl:when test=".='wchar'">wchar</xsl:when>
658 <xsl:when test=".='string'">string</xsl:when>
659 <xsl:when test=".='wstring'">wstring</xsl:when>
660 <!-- UUID type -->
661 <xsl:when test=".='uuid'">uuid</xsl:when>
662 <!-- system interface types -->
663 <xsl:when test=".='$unknown'">$unknown</xsl:when>
664 <xsl:otherwise>
665 <xsl:choose>
666 <!-- enum types -->
667 <xsl:when test="
668 (ancestor::library/application/enum[@name=current()])
669 or (ancestor::library/if/application/enum[@name=current()])
670 or (ancestor::library/application/if[@target=$self_target]/enum[@name=current()])
671 or (ancestor::library/if/application/if[@target=$self_target]/enum[@name=current()])
672 ">
673 <xsl:value-of select="."/>
674 </xsl:when>
675 <!-- custom interface types -->
676 <xsl:when test="
677 ( (ancestor::library/application/interface[@name=current()])
678 or (ancestor::library/if/application/interface[@name=current()])
679 or (ancestor::library/application/if[@target=$self_target]/interface[@name=current()])
680 or (ancestor::library/if/application/if[@target=$self_target]/interface[@name=current()])
681 )
682 ">
683 <xsl:value-of select="."/>
684 </xsl:when>
685 <!-- other types -->
686 <xsl:otherwise>
687 <xsl:message terminate="yes">
688 <xsl:text>Unknown parameter type: </xsl:text>
689 <xsl:value-of select="."/>
690 </xsl:message>
691 </xsl:otherwise>
692 </xsl:choose>
693 </xsl:otherwise>
694 </xsl:choose>
695 </xsl:otherwise>
696 </xsl:choose>
697 <xsl:if test="../@safearray='yes'">
698 <xsl:text>[]</xsl:text>
699 </xsl:if>
700</xsl:template>
701
702</xsl:stylesheet>
703
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette