xmlschema-walker/src/main/java/org/apache/ws/commons/schema/docpath/XmlSchemaElementValidator.java [602:614]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                          Map<XmlSchemaRestriction.Type, List<XmlSchemaRestriction>> facets,
                                          XmlSchemaRestriction.Type facetType) throws ValidationException {

        final List<XmlSchemaRestriction> lengthFacets = facets.get(facetType);
        int lengthRestriction = -1;
        boolean satisfied = true;

        if (lengthFacets != null) {
            for (XmlSchemaRestriction lengthFacet : lengthFacets) {
                lengthRestriction = Integer.parseInt(lengthFacet.getValue().toString());

                switch (facetType) {
                case LENGTH:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



xmlschema-walker/src/main/java/org/apache/ws/commons/schema/docpath/XmlSchemaElementValidator.java [654:666]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                        Map<XmlSchemaRestriction.Type, List<XmlSchemaRestriction>> facets,
                                        XmlSchemaRestriction.Type facetType) throws ValidationException {

        final List<XmlSchemaRestriction> lengthFacets = facets.get(facetType);
        int lengthRestriction = -1;
        boolean satisfied = true;

        if (lengthFacets != null) {
            for (XmlSchemaRestriction lengthFacet : lengthFacets) {
                lengthRestriction = Integer.parseInt(lengthFacet.getValue().toString());

                switch (facetType) {
                case LENGTH:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



