• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Anyone use Waba VM?

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Last month, Java Report had an article on programming Java for the Palm. Instead of covering KVM, the author talked about the Waba VM (available for free from Wabasoft). It seems pretty cool. I'm going to download the Waba SDK and try it out.
Waba contains a subset of Java classes; excludes event listeners, exception handling (back to return codes), and threads; and you have to learn the Waba way of doing UI. Also, Waba maps your use of Java classes to their own implementations.
Has anyone worked with Waba?
 
Ranch Hand
Posts: 170
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Waba is an interesting alternative for Windows CE and Palm programmers who like to program in Java. Waba is not Java, but it accepts a subset of the Java bytecodes. It's missing a few big things: floating point, exceptions and threads being the biggies. The first isn't a big deal, but the second two are, especially threads from a UI perspective. Also, the set of core classes is pretty limited.
On the other hand, Waba is open source and if you feel you need to add a feature you can just go ahead and do it....
Eric
reply
    Bookmark Topic Watch Topic
  • New Topic