Hi,
I'm wondering if Castor allows the abstract="true" attribute for an element. I'm trying to generate Java source code from the following XML Schema:
<!-- Header stuff goes here -->
<xs:complexType name="rpcOperationType">
<xs:annotation>
</xs:annotation>
</xs:complexType>
<xs:element name="rpcOperation" type="rpcOperationType" abstract="true"/>
<!-- Extra stuff here -->
<xs:complexType name="get-configType">
<xs:complexContent>
<xs:extension base="rpcOperationType">
<xs:sequence>
<xs:element ref="source"/>
<xs:element ref="filter" minOccurs="0"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<! -- And a few more rpcOperationType(s) here -->
<! -- Finally, the footer for the schema -->
Basically, there are a few elements that use rpcOperationType as their "base" extension. I'm able to generate source for this, but it seems like the abstract="true" portion isn't being respected by the underlying classes. Any hints on what I should be doing would be greatly appreciated! Thanks in advance!
Lewis
----------------------------------------------------------- If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
unsubscribe castor-user
