}
protected String generateList(XSDatatypeImpl dti, ContextProviderImpl context) {
try {
ListType base = (ListType)dti.getConcreteType();
LengthFacet lf = (LengthFacet)dti.getFacetObject(XSDatatype.FACET_LENGTH);
int n; // compute # of items into this value.
if(lf!=null) {
n = lf.length;
} else {