From: Inderjeet S. <ind...@gm...> - 2009-08-10 13:27:31
|
I have some code that uses java data type byte extensively, and the generated xmlvm code uses byte* everywhere but fails to compile. Does xmlvm handle byte datatype? If not, will just adding a typedef from byte to char solve the problem? Thanks Inder |
From: Sascha H. <sa...@gm...> - 2009-08-10 14:24:31
|
Hi Inder, thanks for that find. It is totally possible that we don't map the byte type yet. I don't think we use it in any of our current applications. Can you dell me, which output language you are cross-compiling into? // Sascha On Mon, Aug 10, 2009 at 3:26 PM, Inderjeet Singh <ind...@gm...> wrote: > I have some code that uses java data type byte extensively, and the > generated xmlvm code uses byte* everywhere but fails to compile. > Does xmlvm handle byte datatype? If not, will just adding a typedef from > byte to char solve the problem? > > Thanks > Inder > > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > |
From: Arno P. <ar...@pu...> - 2009-08-10 14:42:24
|
Inder: can you please mail a small, self-contained example that demonstrates the problems over this mailing list? Thanks, Arno Inderjeet Singh wrote: > I have some code that uses java data type byte extensively, and the > generated xmlvm code uses byte* everywhere but fails to compile. > Does xmlvm handle byte datatype? If not, will just adding a typedef from > byte to char solve the problem? > > Thanks > Inder > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > > ------------------------------------------------------------------------ > > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Inderjeet S. <ind...@gm...> - 2009-08-10 15:46:45
|
Hi Arno, Thanks for the quick response. I am compiling from Java. Here is an example: class Foo { private final byte value; public Foo(byte value) { this.value = value; } public byte getValue() { return value; } } Thanks Inder On Mon, Aug 10, 2009 at 7:12 AM, Arno Puder <ar...@pu...> wrote: > > Inder: can you please mail a small, self-contained example that > demonstrates the problems over this mailing list? > > Thanks, > Arno > > > Inderjeet Singh wrote: > > I have some code that uses java data type byte extensively, and the > > generated xmlvm code uses byte* everywhere but fails to compile. > > Does xmlvm handle byte datatype? If not, will just adding a typedef from > > byte to char solve the problem? > > > > Thanks > > Inder > > > > > > ------------------------------------------------------------------------ > > > > > ------------------------------------------------------------------------------ > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > > trial. Simplify your report design, integration and deployment - and > focus on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > xmlvm-users mailing list > > xml...@li... > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > |
From: Sascha H. <sa...@gm...> - 2009-08-10 16:01:33
|
Hi Inder, what output language do you use? Thanks // Sascha On Mon, Aug 10, 2009 at 5:46 PM, Inderjeet Singh <ind...@gm...> wrote: > Hi Arno, > > Thanks for the quick response. I am compiling from Java. > Here is an example: > > class Foo { private final byte value; > public Foo(byte value) { > this.value = value; > } > public byte getValue() { > return value; > } > } > > Thanks > Inder > > > On Mon, Aug 10, 2009 at 7:12 AM, Arno Puder <ar...@pu...> wrote: > >> >> Inder: can you please mail a small, self-contained example that >> demonstrates the problems over this mailing list? >> >> Thanks, >> Arno >> >> >> Inderjeet Singh wrote: >> > I have some code that uses java data type byte extensively, and the >> > generated xmlvm code uses byte* everywhere but fails to compile. >> > Does xmlvm handle byte datatype? If not, will just adding a typedef from >> > byte to char solve the problem? >> > >> > Thanks >> > Inder >> > >> > >> > ------------------------------------------------------------------------ >> > >> > >> ------------------------------------------------------------------------------ >> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day >> > trial. Simplify your report design, integration and deployment - and >> focus on >> > what you do best, core application coding. Discover what's new with >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >> > >> > >> > ------------------------------------------------------------------------ >> > >> > _______________________________________________ >> > xmlvm-users mailing list >> > xml...@li... >> > https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> >> >> ------------------------------------------------------------------------------ >> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day >> trial. Simplify your report design, integration and deployment - and focus >> on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> > > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > |
From: Inderjeet S. <ind...@gm...> - 2009-08-10 16:14:28
|
Yes, the output is Objective C. Thanks Inder On Mon, Aug 10, 2009 at 9:00 AM, Sascha Haeberling <sa...@gm...>wrote: > Hi Inder, > what output language do you use? > > Thanks > // Sascha > > > On Mon, Aug 10, 2009 at 5:46 PM, Inderjeet Singh <ind...@gm...>wrote: > >> Hi Arno, >> >> Thanks for the quick response. I am compiling from Java. >> Here is an example: >> >> class Foo { private final byte value; >> public Foo(byte value) { >> this.value = value; >> } >> public byte getValue() { >> return value; >> } >> } >> >> Thanks >> Inder >> >> >> On Mon, Aug 10, 2009 at 7:12 AM, Arno Puder <ar...@pu...> wrote: >> >>> >>> Inder: can you please mail a small, self-contained example that >>> demonstrates the problems over this mailing list? >>> >>> Thanks, >>> Arno >>> >>> >>> Inderjeet Singh wrote: >>> > I have some code that uses java data type byte extensively, and the >>> > generated xmlvm code uses byte* everywhere but fails to compile. >>> > Does xmlvm handle byte datatype? If not, will just adding a typedef >>> from >>> > byte to char solve the problem? >>> > >>> > Thanks >>> > Inder >>> > >>> > >>> > >>> ------------------------------------------------------------------------ >>> > >>> > >>> ------------------------------------------------------------------------------ >>> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >>> 30-Day >>> > trial. Simplify your report design, integration and deployment - and >>> focus on >>> > what you do best, core application coding. Discover what's new with >>> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >>> > >>> > >>> > >>> ------------------------------------------------------------------------ >>> > >>> > _______________________________________________ >>> > xmlvm-users mailing list >>> > xml...@li... >>> > https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> >>> >>> ------------------------------------------------------------------------------ >>> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >>> 30-Day >>> trial. Simplify your report design, integration and deployment - and >>> focus on >>> what you do best, core application coding. Discover what's new with >>> Crystal Reports now. http://p.sf.net/sfu/bobj-july >>> _______________________________________________ >>> xmlvm-users mailing list >>> xml...@li... >>> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >>> >> >> >> >> ------------------------------------------------------------------------------ >> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day >> trial. Simplify your report design, integration and deployment - and focus >> on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> xmlvm-users mailing list >> xml...@li... >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> >> > |
From: Arno P. <ar...@pu...> - 2009-08-10 16:56:06
|
I presume your are generating Objective-C, right? Arno Sent from my iPod On Aug 10, 2009, at 8:46 AM, Inderjeet Singh <ind...@gm...> wrote: > Hi Arno, > > Thanks for the quick response. I am compiling from Java. > Here is an example: > > class Foo { > private final byte value; > public Foo(byte value) { > this.value = value; > } > public byte getValue() { > return value; > } > } > > Thanks > Inder > > > On Mon, Aug 10, 2009 at 7:12 AM, Arno Puder <ar...@pu...> wrote: > > Inder: can you please mail a small, self-contained example that > demonstrates the problems over this mailing list? > > Thanks, > Arno > > > Inderjeet Singh wrote: > > I have some code that uses java data type byte extensively, and the > > generated xmlvm code uses byte* everywhere but fails to compile. > > Does xmlvm handle byte datatype? If not, will just adding a > typedef from > > byte to char solve the problem? > > > > Thanks > > Inder > > > > > > > --- > --------------------------------------------------------------------- > > > > > --- > --- > --- > --------------------------------------------------------------------- > > Let Crystal Reports handle the reporting - Free Crystal Reports > 2008 30-Day > > trial. Simplify your report design, integration and deployment - > and focus on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > > > > > > --- > --------------------------------------------------------------------- > > > > _______________________________________________ > > xmlvm-users mailing list > > xml...@li... > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > --- > --- > --- > --------------------------------------------------------------------- > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > trial. Simplify your report design, integration and deployment - and > focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > |
From: Sascha H. <sa...@gm...> - 2009-08-10 19:51:18
|
Yes, he just said it was Obj C. :) Du you have some time looking into this? Is this something that we didn't map because we didn't need it so far or something that was tricky to do? I somehow guess it's the first reason, but as you did most of the ObjC mapping, ... :) // Sascha On Mon, Aug 10, 2009 at 5:56 PM, Arno Puder <ar...@pu...> wrote: > > I presume your are generating Objective-C, right? > > Arno > > > Sent from my iPod > > On Aug 10, 2009, at 8:46 AM, Inderjeet Singh <ind...@gm...> wrote: > > Hi Arno, > > Thanks for the quick response. I am compiling from Java. > Here is an example: > > class Foo { private final byte value; > public Foo(byte value) { > this.value = value; > } > public byte getValue() { > return value; > } > } > > Thanks > Inder > > > On Mon, Aug 10, 2009 at 7:12 AM, Arno Puder < <ar...@pu...> > ar...@pu...> wrote: > >> >> Inder: can you please mail a small, self-contained example that >> demonstrates the problems over this mailing list? >> >> Thanks, >> Arno >> >> >> Inderjeet Singh wrote: >> > I have some code that uses java data type byte extensively, and the >> > generated xmlvm code uses byte* everywhere but fails to compile. >> > Does xmlvm handle byte datatype? If not, will just adding a typedef from >> > byte to char solve the problem? >> > >> > Thanks >> > Inder >> > >> > >> > ------------------------------------------------------------------------ >> > >> > >> ------------------------------------------------------------------------------ >> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day >> > trial. Simplify your report design, integration and deployment - and >> focus on >> > what you do best, core application coding. Discover what's new with >> > Crystal Reports now. <http://p.sf.net/sfu/bobj-july> >> http://p.sf.net/sfu/bobj-july >> > >> > >> > ------------------------------------------------------------------------ >> > >> > _______________________________________________ >> > xmlvm-users mailing list >> > <xml...@li...>xml...@li... >> > <https://lists.sourceforge.net/lists/listinfo/xmlvm-users> >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> >> >> ------------------------------------------------------------------------------ >> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day >> trial. Simplify your report design, integration and deployment - and focus >> on >> what you do best, core application coding. Discover what's new with >> Crystal Reports now. <http://p.sf.net/sfu/bobj-july> >> http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> xmlvm-users mailing list >> <xml...@li...>xml...@li... >> <https://lists.sourceforge.net/lists/listinfo/xmlvm-users> >> https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> > > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > |