metaInfHolder.setMaxInclusiveFacet(maxIn.getValue().toString());
} else if (facet instanceof XmlSchemaMinInclusiveFacet) {
XmlSchemaMinInclusiveFacet minIn = (XmlSchemaMinInclusiveFacet) facet;
metaInfHolder.setMinInclusiveFacet(minIn.getValue().toString());
} else if (facet instanceof XmlSchemaMaxLengthFacet) {
XmlSchemaMaxLengthFacet maxLen = (XmlSchemaMaxLengthFacet) facet;
metaInfHolder.setMaxLengthFacet(Integer.parseInt(maxLen.getValue().toString()));
} else if (facet instanceof XmlSchemaMinLengthFacet) {
XmlSchemaMinLengthFacet minLen = (XmlSchemaMinLengthFacet) facet;
metaInfHolder.setMinLengthFacet(Integer.parseInt(minLen.getValue().toString()));
}
}