Changeset 51416 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- May 27, 2014 8:40:32 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93955
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/glue-java.xsl
r50417 r51416 1367 1367 </xsl:call-template> 1368 1368 </xsl:variable> 1369 <xsl:value-of select="concat('Helper.unwrap2(', $elemgluetype, '.class, ', $elembacktype, '.class, ', $value, ')')"/> 1369 <!-- Sometimes javac needs a boost of self-confidence regarding 1370 varargs calls, and this (Object) cast makes sure that it calls 1371 the varargs method - as if there is any other. --> 1372 <xsl:value-of select="concat('(Object)Helper.unwrap2(', $elemgluetype, '.class, ', $elembacktype, '.class, ', $value, ')')"/> 1370 1373 </xsl:when> 1371 1374 <xsl:otherwise> … … 1454 1457 1455 1458 <xsl:when test="($idltype='octet') and ($safearray='yes')"> 1456 <xsl:value-of select=" concat('Helper.encodeBase64(', $value, ')')"/>1459 <xsl:value-of select="$value"/> 1457 1460 </xsl:when> 1458 1461 … … 1580 1583 <xsl:choose> 1581 1584 <xsl:when test="($G_vboxGlueStyle='xpcom')"> 1582 <xsl:text> 1585 <xsl:text> </xsl:text> 1583 1586 <xsl:if test="param[@dir='return']"> 1584 1587 <xsl:value-of select="concat($retval, ' = ')" /> … … 1625 1628 1626 1629 <xsl:when test="($G_vboxGlueStyle='mscom')"> 1627 <xsl:text> 1630 <xsl:text> </xsl:text> 1628 1631 <xsl:if test="param[@dir='return']"> 1629 1632 <xsl:value-of select="concat($retval, ' = ')" /> … … 1995 1998 </xsl:when> 1996 1999 <xsl:otherwise> 1997 <xsl:value-of select="concat(' ', $backrettype, ' retVal; ')"/>2000 <xsl:value-of select="concat(' ', $backrettype, ' retVal; ')"/> 1998 2001 </xsl:otherwise> 1999 2002 </xsl:choose> … … 2046 2049 </xsl:call-template> 2047 2050 </xsl:variable> 2048 <xsl:value-of select="concat(' return ', $wrapped, '; ')" />2051 <xsl:value-of select="concat(' return ', $wrapped, '; ')" /> 2049 2052 </xsl:if> 2050 2053 <xsl:call-template name="endExcWrapper"/> … … 2121 2124 </xsl:call-template> 2122 2125 </xsl:variable> 2123 <xsl:text> nsISupports nsobj = obj != null ? (nsISupports)obj.getWrapped() : null; </xsl:text>2124 <xsl:text> if (nsobj == null) return null; </xsl:text>2125 <xsl:value-of select="concat(' ', $backtype, ' qiobj = Helper.queryInterface(nsobj, "{', $uuid, '}", ', $backtype, '.class); ')" />2126 <xsl:value-of select="concat(' return qiobj == null ? null : new ', $ifname, '(qiobj); ')" />2126 <xsl:text> nsISupports nsobj = obj != null ? (nsISupports)obj.getWrapped() : null; </xsl:text> 2127 <xsl:text> if (nsobj == null) return null; </xsl:text> 2128 <xsl:value-of select="concat(' ', $backtype, ' qiobj = Helper.queryInterface(nsobj, "{', $uuid, '}", ', $backtype, '.class); ')" /> 2129 <xsl:value-of select="concat(' return qiobj == null ? null : new ', $ifname, '(qiobj); ')" /> 2127 2130 </xsl:when> 2128 2131 2129 2132 <xsl:when test="$G_vboxGlueStyle='mscom'"> 2130 <xsl:value-of select="concat(' return', ' obj == null ? null : new ', $ifname, '((com.jacob.com.Dispatch)obj.getWrapped()); ')" />2133 <xsl:value-of select="concat(' return', ' obj == null ? null : new ', $ifname, '((com.jacob.com.Dispatch)obj.getWrapped()); ')" /> 2131 2134 </xsl:when> 2132 2135 2133 2136 <xsl:when test="$G_vboxGlueStyle='jaxws'"> 2134 2137 <!-- bad, need to check that we really can be casted to this type --> 2135 <xsl:value-of select="concat(' return obj == null ? null : new ', $ifname, '(obj.getWrapped(), obj.getRemoteWSPort()); ')" />2138 <xsl:value-of select="concat(' return obj == null ? null : new ', $ifname, '(obj.getWrapped(), obj.getRemoteWSPort()); ')" /> 2136 2139 </xsl:when> 2137 2140 … … 2332 2335 <xsl:value-of select="concat(' public ', $ifname, '(String wrapped, VboxPortType port) ')" /> 2333 2336 <xsl:text> { </xsl:text> 2334 <xsl:text> 2337 <xsl:text> super(wrapped, port); </xsl:text> 2335 2338 <xsl:text> } </xsl:text> 2336 2339 </xsl:when> … … 2339 2342 <xsl:value-of select="concat(' public ', $ifname, '(', $wrappedType, ' wrapped) ')" /> 2340 2343 <xsl:text> { </xsl:text> 2341 <xsl:text> 2344 <xsl:text> super(wrapped); </xsl:text> 2342 2345 <xsl:text> } </xsl:text> 2343 2346 … … 3334 3337 if (values == null) 3335 3338 return null; 3336 if (values.length == 0)3337 return Collections.emptyList();3338 3339 3339 3340 List<Short> ret = new ArrayList<Short>(values.length); … … 3349 3350 if (values == null) 3350 3351 return null; 3351 if (values.length == 0)3352 return Collections.emptyList();3353 3352 3354 3353 List<Integer> ret = new ArrayList<Integer>(values.length); … … 3364 3363 if (values == null) 3365 3364 return null; 3366 if (values.length == 0)3367 return Collections.emptyList();3368 3365 3369 3366 List<Long> ret = new ArrayList<Long>(values.length); … … 3379 3376 if (values == null) 3380 3377 return null; 3381 if (values.length == 0)3382 return Collections.emptyList();3383 3378 3384 3379 List<String> ret = new ArrayList<String>(values.length); … … 3443 3438 return wrapDispatch(wrapperClass, v.getDispatch()); 3444 3439 default: 3445 throw new VBoxException("unhandled variant type " + vt);3440 throw new IllegalArgumentException("unhandled variant type " + vt); 3446 3441 } 3447 3442 }
Note:
See TracChangeset
for help on using the changeset viewer.