Hi,
I am using the plugin with jaxb2-maven-plugin.
I have an XSD with this kind of annotations :
<xs:element maxOccurs="1" minOccurs="0" name="Prty" type="Max16NumericText_T2S"> <xs:annotation> <xs:documentation source="Name" xml:lang="EN">Priority</xs:documentation> <xs:documentation source="Definition" xml:lang="EN">Relative indication of the processing precedence of the message over a (set of) Business Messages with assigned priorities.</xs:documentation> </xs:annotation> </xs:element>
The plugin only extracts the second documentation :
@Pattern(regexp = "[0-9]{1,16}") @XsdInfo(name = "Relative indication of the processing precedence of the message over a (set of) Business Messages with assigned priorities.") protected String prty;
Is there a workaround?
Hi,
I am using the plugin with jaxb2-maven-plugin.
I have an XSD with this kind of annotations :
<xs:element maxOccurs="1" minOccurs="0" name="Prty" type="Max16NumericText_T2S"> <xs:annotation> <xs:documentation source="Name" xml:lang="EN">Priority</xs:documentation> <xs:documentation source="Definition" xml:lang="EN">Relative indication of the processing precedence of the message over a (set of) Business Messages with assigned priorities.</xs:documentation> </xs:annotation> </xs:element>The plugin only extracts the second documentation :
@Pattern(regexp = "[0-9]{1,16}") @XsdInfo(name = "Relative indication of the processing precedence of the message over a (set of) Business Messages with assigned priorities.") protected String prty;Is there a workaround?