Given a Dataset XSD file, is it possible to generate java classes, that don't make use of System.Data? I've tried running a test using JAXB's XJC tool, but it doesn't produce anything terribly useful.
Update: I've tried XmlBeans also, following Fernando's suggestion, and it generates something similar to the XJC output - that is, class representations of the tables, but without any columns, constraints, or rows. I can add these things in a facade, but ideally they would be generated by whatever XSD compiler was used.