shared-libraries/servicemix-soap2/src/main/java/org/apache/servicemix/soap/interceptors/jbi/JbiInWsdl1Interceptor.java [547:559]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public int getNamespaceCount() {
            switch (state) {
            case STATE_START_ELEMENT_WRAPPER:
            case STATE_END_ELEMENT_WRAPPER:
            case STATE_START_ELEMENT_PART:
            case STATE_END_ELEMENT_PART:
                return 0;
            case STATE_RUN_PART:
                return parts.get(part).get(reader).getNamespaceCount();
            default:
                throw new IllegalStateException();
        }
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bindings/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/StaxJbiWrapper.java [502:514]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public int getNamespaceCount() {
        switch (state) {
        case STATE_START_ELEMENT_WRAPPER:
        case STATE_END_ELEMENT_WRAPPER:
        case STATE_START_ELEMENT_PART:
        case STATE_END_ELEMENT_PART:
            return 0;
        case STATE_RUN_PART:
            return parts.get(part).get(reader).getNamespaceCount();
        default:
            throw new IllegalStateException();
    }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



