users@jaxb.java.net

Problem with a mixed content element type

From: Andreas Pakulat <pakulat_at_rostock.zgdv.de>
Date: Tue, 11 Apr 2006 11:54:56 +0200

Hi,

suppose I have the following schema fragment:

    <xsd:complexType name="PropertyNameType">
       <xsd:complexContent mixed="true">
          <xsd:extension base="ogc:ExpressionType"/>
       </xsd:complexContent>
    </xsd:complexType>

Where "ogc:ExpressionType" is just an abstract type.

xjc generates a PropertyNameType without any getters/setters, the
generated javadoc also doesn't mention the mixed="true" attribute
anymore? It seems like it's ignored.

I'm using JAXB 2.0 RC.

Andreas