You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reported by [email protected], Aug 11, 2011
Currently.... In the elements table, the type is defined as xsd:any when the property is of type java.lang.Object. If there is an @XMLElements tag....Would it be a bad idea to display the list of @xmlelement info within the @XMLElements tag.
Reported by [email protected], Aug 11, 2011
Currently.... In the elements table, the type is defined as xsd:any when the property is of type java.lang.Object. If there is an @XMLElements tag....Would it be a bad idea to display the list of @xmlelement info within the @XMLElements tag.
Example:
public class Foo{
@XMLElements(value={
@xmlelement(name="number",type=Integer.class),
@xmlelement(name="string",type=String.class)
})
private Object details;
}
Current Documentation: The type of the "details" element in Foo class is xsd:any.
Feature request: Can the type of the "details" element in Foo class
be ( {@link Integer.class} | {@link String.class} )
The text was updated successfully, but these errors were encountered: