bindings/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/StaxJbiWrapper.java [258:322]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            default:
                throw new IllegalStateException();
        }
    }

    public boolean hasName() {
        return state == STATE_RUN_PART ? parts.get(part).get(reader).isStartElement() : (event == START_ELEMENT || event == END_ELEMENT);
    }

    public Object getProperty(String s) throws IllegalArgumentException {
        return null;  //To change body of implemented methods use File | Settings | File Templates.
    }

    public void require(int i, String s, String s1) throws XMLStreamException {
        //To change body of implemented methods use File | Settings | File Templates.
    }

    public String getElementText() throws XMLStreamException {
        return null;  //To change body of implemented methods use File | Settings | File Templates.
    }

    public int nextTag() throws XMLStreamException {
        while (hasNext()) {
            int e = next();
            if (e == START_ELEMENT || e == END_ELEMENT)
                return e;
        }
        return event;
    }

    public boolean hasNext() throws XMLStreamException {
        return event != END_DOCUMENT;
    }

    public void close() throws XMLStreamException {
        //To change body of implemented methods use File | Settings | File Templates.
    }

    public String getNamespaceURI(String s) {
        return null;  //To change body of implemented methods use File | Settings | File Templates.
    }

    public boolean isStartElement() {
        return state == STATE_RUN_PART ? parts.get(part).get(reader).isStartElement() : event == START_ELEMENT;
    }

    public boolean isEndElement() {
        return state == STATE_RUN_PART ? parts.get(part).get(reader).isEndElement() : event == END_ELEMENT;
    }

    public boolean isCharacters() {
        return state == STATE_RUN_PART ? parts.get(part).get(reader).isCharacters() : event == CHARACTERS;
    }

    public boolean isWhiteSpace() {
        return state == STATE_RUN_PART ? parts.get(part).get(reader).isWhiteSpace() : event == SPACE;
    }

    public String getAttributeValue(String s, String s1) {
        throw new UnsupportedOperationException("Not implemented");
    }

    public int getAttributeCount() {
        switch (state) {
            case STATE_START_ELEMENT_WRAPPER:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



shared-libraries/servicemix-soap2/src/main/java/org/apache/servicemix/soap/interceptors/jbi/JbiInWsdl1Interceptor.java [359:423]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                default:
                    throw new IllegalStateException();
            }
        }

        public boolean hasName() {
            return state == STATE_RUN_PART ? parts.get(part).get(reader).isStartElement() : (event == START_ELEMENT || event == END_ELEMENT);
        }

        public Object getProperty(String s) throws IllegalArgumentException {
            return null;  //To change body of implemented methods use File | Settings | File Templates.
        }

        public void require(int i, String s, String s1) throws XMLStreamException {
            //To change body of implemented methods use File | Settings | File Templates.
        }

        public String getElementText() throws XMLStreamException {
            return null;  //To change body of implemented methods use File | Settings | File Templates.
        }

        public int nextTag() throws XMLStreamException {
            while (hasNext()) {
                int e = next();
                if (e == START_ELEMENT || e == END_ELEMENT)
                    return e;
            }
            return event;
        }

        public boolean hasNext() throws XMLStreamException {
            return event != END_DOCUMENT;
        }

        public void close() throws XMLStreamException {
            //To change body of implemented methods use File | Settings | File Templates.
        }

        public String getNamespaceURI(String s) {
            return null;  //To change body of implemented methods use File | Settings | File Templates.
        }

        public boolean isStartElement() {
            return state == STATE_RUN_PART ? parts.get(part).get(reader).isStartElement() : event == START_ELEMENT;
        }

        public boolean isEndElement() {
            return state == STATE_RUN_PART ? parts.get(part).get(reader).isEndElement() : event == END_ELEMENT;
        }

        public boolean isCharacters() {
            return state == STATE_RUN_PART ? parts.get(part).get(reader).isCharacters() : event == CHARACTERS;
        }

        public boolean isWhiteSpace() {
            return state == STATE_RUN_PART ? parts.get(part).get(reader).isWhiteSpace() : event == SPACE;
        }

        public String getAttributeValue(String s, String s1) {
            throw new UnsupportedOperationException("Not implemented");
        }

        public int getAttributeCount() {
            switch (state) {
                case STATE_START_ELEMENT_WRAPPER:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



