bindings/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/StaxJbiWrapper.java [491:516]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            case STATE_RUN_PART:
                return parts.get(part).get(reader).getAttributeValue(i);
            default:
                throw new IllegalStateException();
        }
    }

    public boolean isAttributeSpecified(int i) {
        throw new UnsupportedOperationException("Not implemented");
    }

    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();
    }
    }

    public String getNamespacePrefix(int i) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



shared-libraries/servicemix-soap2/src/main/java/org/apache/servicemix/soap/interceptors/jbi/JbiInWsdl1Interceptor.java [536:561]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                case STATE_RUN_PART:
                    return parts.get(part).get(reader).getAttributeValue(i);
                default:
                    throw new IllegalStateException();
            }
        }

        public boolean isAttributeSpecified(int i) {
            throw new UnsupportedOperationException("Not implemented");
        }

        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();
        }
        }

        public String getNamespacePrefix(int i) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



