I have the following element (SimpleType)
<xs:element name="north_edge" type="xs:decimal"
xs:minInclusive="-90.0" xs:maxInclusive="90.0"/>
When I do (simple is the SimpleType of the element):
for (Enumeration facets = simple.getLocalFacets(); facets.hasMoreElements();) {
Facet f = (Facet) facets.nextElement();
System.out.println(f.getName() + ": " + f.getValue());
}
I cannot get any facets? What am I doing incorrectly?
Thanks in advance.
Lloyd
-----------------------------------------------------------
If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
unsubscribe castor-dev