I'm trying to use the xs:annotation / xs:documentation tags, but nothing is getting populated in the description column of the HTML tables.
<s:element minOccurs="1" maxOccurs="1" name="ContactMethodId" type="s:int" >
<xs:annotation>
<xs:documentation>Na = 0, RegularMail = 1, Email = 2, VoiceMail = 3, FaxBack = 4, Print = 5</xs:documentation>
</xs:annotation>
</s:element>
Maybe this feature hasn't been implemented yet? The Stub.java model looks like it will only ever return the words "In header"
public String getDescription() {
if (this.header) {
return "In header";
}
return null;
}