return result.toString();
}
private String formatDuration( SchemaType sType )
{
XmlDuration d = ( XmlDuration )sType.getFacet( SchemaType.FACET_MIN_INCLUSIVE );
GDuration minInclusive = null;
if( d != null )
minInclusive = d.getGDurationValue();
d = ( XmlDuration )sType.getFacet( SchemaType.FACET_MAX_INCLUSIVE );
GDuration maxInclusive = null;
if( d != null )
maxInclusive = d.getGDurationValue();
d = ( XmlDuration )sType.getFacet( SchemaType.FACET_MIN_EXCLUSIVE );
GDuration minExclusive = null;
if( d != null )
minExclusive = d.getGDurationValue();
d = ( XmlDuration )sType.getFacet( SchemaType.FACET_MAX_EXCLUSIVE );
GDuration maxExclusive = null;
if( d != null )
maxExclusive = d.getGDurationValue();
GDurationBuilder gdurb = new GDurationBuilder();
@SuppressWarnings( "unused" )
BigInteger min, max;