We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, if a schema like
<xsd:complexType name="person"> <xsd:sequence> <xsd:element name="name" type="xsd:string"/> <xsd:element name="born" type="xsd:string"/> <xsd:element name="died" type="xsd:string" minOccurs="0"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="author"> <xsd:complexContent> <xsd:extension base="person"> <xsd:attribute name="recommends" type="xsd:IDREF"/> <!-- Book --> </xsd:extension> </xsd:complexContent> </xsd:complexType>
is given and only author is referred from the root element, we still generate code for both person and author. This is unnecessary.
author
person
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, if a schema like
is given and only
author
is referred from the root element, we still generate code for bothperson
andauthor
. This is unnecessary.The text was updated successfully, but these errors were encountered: