users@jaxb.java.net

JAXB mapping

From: Denis <java2xp_at_gmail.com>
Date: Tue, 28 Aug 2007 17:16:49 +0300

Hi,


JAXB maps

<xsd:complexType name="Item">
        <xsd:sequence minOccurs="0" maxOccurs="unbounded">
            <xsd:element name="titel" type="xsd:string" minOccurs="1"/>
            <xsd:element name="isbn" type="xsd:string" minOccurs="1"/>
        </xsd:sequence>
</xsd:complexType>

to
public List<JAXBElement<?>> getTitelAndIsbn()


but I want to have String getTitel() and String getIsbn() methods. How I may
have it?