- From: Curt Arnold <carnold@houston.rr.com>
- Date: Mon, 13 Jan 2003 01:27:48 -0600
- To: <www-dom-ts@w3.org>
All casting is implicit, the transform is responsible for doing any appropriate casting. I assume this scenerio (required casting between data types) had not previously appeared in the tests. As a workaround, you may try assigning the value to a short variable and then using the short variable as the parameter. <var name="mode" value="1" type="short"/> <createDOMBuilder var="builder" obj="lsImplementation" mode="mode" schemaType="schemaType"/> ----- Original Message ----- From: "Jeroen van Rotterdam" <jvrdam@xs4all.nl> To: <www-dom-ts@w3.org> Sent: Sunday, January 12, 2003 4:09 PM Subject: casting to a short > Attached a really simple test which creates a DOMBuilder. > > Compiling fails since it should be: > > builder = lsImplementation.createDOMBuilder((short)1,schemaType); > > instead of: > > builder = lsImplementation.createDOMBuilder(1,schemaType); > > How do you cast the constant to a short within the test ? > > Thanks in advance, > > jeroen > > > ===== > X-Hive Corporation > Jeroen van Rotterdam, CEO > e-mail: jeroen@x-hive.com > phone: +31 10 7108600 > http://www.x-hive.com > >
Received on Monday, 13 January 2003 02:27:51 UTC