Changeset 39980 in vbox for trunk/src/VBox
- Timestamp:
- Feb 3, 2012 12:02:21 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/glue-java.xsl
r39979 r39980 1411 1411 <xsl:choose> 1412 1412 <xsl:when test="@safearray='yes'"> 1413 <xsl:choose> 1414 <xsl:when test="$idltype='boolean'"> 1415 <xsl:value-of select="concat('Helper.unwrapBoolean(',$value,')')"/> 1416 </xsl:when> 1417 <xsl:when test="($idltype='long') or ($idltype='unsigned long') or ($idltype='integer')"> 1418 <xsl:value-of select="concat('Helper.unwrapInteger(',$value,')')"/> 1419 </xsl:when> 1420 <xsl:when test="($idltype='short') or ($idltype='unsigned short')"> 1421 <xsl:value-of select="concat('Helper.unwrapUShort(',$value,')')"/> 1422 </xsl:when> 1423 <xsl:when test="($idltype='unsigned long long') or ($idltype='long long')"> 1424 <xsl:value-of select="concat('Helper.unwrapULong(',$value,')')"/> 1425 </xsl:when> 1426 <xsl:when test="($idltype='wstring') or ($idltype='uuid')"> 1427 <xsl:value-of select="concat('Helper.unwrapStr(',$value,')')"/> 1428 </xsl:when> 1429 <xsl:otherwise> 1430 <xsl:value-of select="concat('((', $value, ' == null) ? null :', $value, '.getWrapped())')" /> 1431 </xsl:otherwise> 1432 </xsl:choose> 1413 <xsl:value-of select="concat('Helper.unwrap(',$value,')')"/> 1433 1414 </xsl:when> 1434 1415 <xsl:otherwise>
Note:
See TracChangeset
for help on using the changeset viewer.