ANN: scalaxb 0.1.0 is released

Hi all,
I'd like to sheepishly announce some updates to scalaxb.
- Implements parsing of content models using parser combinators. - Implements support for xsi:nillable (GH-3).
The following code is an example of a generated parser:
    object Address extends rt.ElemNameParser[Address] {      val targetNamespace = "http://www.example.com/IPO"
      def parser(node: scala.xml.Node): Parser[Address] =        (rt.ElemName(targetNamespace, "name")) ~           (rt.ElemName(targetNamespace, "street")) ~            (rt.ElemName(targetNamespace, "city")) ^^            { case p1 ~           p2 ~           p3 => Address(p1.text,          p2.text,          p3.text) }     }
Further information is available at http://scalaxb.org.GitHub repo is at http://github.com/eed3si9n/scalaxb.
Thanks,e.e

Copyright © 2013 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland