Klaus Claszen commented on Bug JIBX-466

The problem also occurs if an element has one lowerCase character which is followed by an upperCase character, like 'zOrder' in the following example

<xs:complexType name="fooBar">
	<xs:sequence>
		<xs:element name="time" type="xs:dateTime" minOccurs="0" />
		<xs:element name="segmentId" type="xs:int" minOccurs="1" />
		<xs:element name="zOrder" type="xs:double" minOccurs="0" />
	</xs:sequence>
</xs:complexType>

The code generation will generate a member which starts with an upperCase character:

private Double ZOrder;

but the basename provided in the ClassDecorator.valueAdded method will be 'zOrder' and thus will not match the member name.

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
jibx-devs mailing list
jibx-devs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jibx-devs

Reply via email to