You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Benson Margulies (JIRA)" <ji...@apache.org> on 2007/10/31 15:07:50 UTC

[jira] Created: (CXF-1161) Javadoc for classes generated XSD with WSDL is defective

Javadoc for classes generated XSD with WSDL is defective
--------------------------------------------------------

                 Key: CXF-1161
                 URL: https://issues.apache.org/jira/browse/CXF-1161
             Project: CXF
          Issue Type: Bug
          Components: JAXB Databinding
    Affects Versions: 2.0.3
            Reporter: Benson Margulies


I've added a 'form_test.xsd' file to the test resources for rt/databinding/jaxb. This contains:

<xs:complexType name="ObjectWithQualifiedElement">
        <xs:sequence>
            <xs:element name="string1" type="xs:string" />
            <xs:element name="string2" type="xs:string" form='qualified' />
        </xs:sequence>
    </xs:complexType>

The javadoc in the generated class lacks the form attribute.

<complexType name="ObjectWithQualifiedElement">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="string1" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="string2" type="{http://www.w3.org/2001/XMLSchema}string"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.