bindings/servicemix-cxf-bc/src/main/java/org/apache/servicemix/cxfbc/interceptors/StaxJbiWrapper.java [527:632]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getNamespaceURI(int i) {
        return parts.get(part).get(reader).getNamespaceURI(i);
    }

    public NamespaceContext getNamespaceContext() {
        if (state == STATE_RUN_PART) {
            return parts.get(part).get(reader).getNamespaceContext();
        } else {
            return new ExtendedXMLStreamReader.SimpleNamespaceContext();
        }
    }

    public String getText() {
        if (state == STATE_RUN_PART) {
            return parts.get(part).get(reader).getText();
        } else {
            throw new IllegalStateException();
        }
    }

    public char[] getTextCharacters() {
        if (state == STATE_RUN_PART) {
            return parts.get(part).get(reader).getTextCharacters();
        } else {
            throw new IllegalStateException();
        }
    }

    public int getTextCharacters(int i, char[] chars, int i1, int i2) throws XMLStreamException {
        if (state == STATE_RUN_PART) {
            return parts.get(part).get(reader).getTextCharacters(i, chars, i1, i2);
        } else {
            throw new IllegalStateException();
        }
    }

    public int getTextStart() {
        if (state == STATE_RUN_PART) {
            return parts.get(part).get(reader).getTextStart();
        } else {
            throw new IllegalStateException();
        }
    }

    public int getTextLength() {
        if (state == STATE_RUN_PART) {
            return parts.get(part).get(reader).getTextLength();
        } else {
            throw new IllegalStateException();
        }
    }

    public String getEncoding() {
        throw new UnsupportedOperationException("Not implemented");
    }

    public boolean hasText() {
        if (state == STATE_RUN_PART) {
            return parts.get(part).get(reader).hasText();
        } else {
            return false;
        }
    }

    public Location getLocation() {
        return new Location() {
            public int getCharacterOffset() {
                return 0;
            }
            public int getColumnNumber() {
                return 0;
            }
            public int getLineNumber() {
                return 0;
            }
            public String getPublicId() {
                return null;
            }
            public String getSystemId() {
                return null;
            }
        };
    }

    public String getVersion() {
        throw new UnsupportedOperationException("Not implemented");
    }

    public boolean isStandalone() {
        throw new UnsupportedOperationException("Not implemented");
    }

    public boolean standaloneSet() {
        throw new UnsupportedOperationException("Not implemented");
    }

    public String getCharacterEncodingScheme() {
        throw new UnsupportedOperationException("Not implemented");
    }

    public String getPITarget() {
        throw new UnsupportedOperationException("Not implemented");
    }

    public String getPIData() {
        throw new UnsupportedOperationException("Not implemented");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



shared-libraries/servicemix-soap2/src/main/java/org/apache/servicemix/soap/interceptors/jbi/JbiInWsdl1Interceptor.java [565:670]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public String getNamespaceURI(int i) {
            return parts.get(part).get(reader).getNamespaceURI(i);
        }

        public NamespaceContext getNamespaceContext() {
            if (state == STATE_RUN_PART) {
                return parts.get(part).get(reader).getNamespaceContext();
            } else {
                return new ExtendedXMLStreamReader.SimpleNamespaceContext();
            }
        }

        public String getText() {
            if (state == STATE_RUN_PART) {
                return parts.get(part).get(reader).getText();
            } else {
                throw new IllegalStateException();
            }
        }

        public char[] getTextCharacters() {
            if (state == STATE_RUN_PART) {
                return parts.get(part).get(reader).getTextCharacters();
            } else {
                throw new IllegalStateException();
            }
        }

        public int getTextCharacters(int i, char[] chars, int i1, int i2) throws XMLStreamException {
            if (state == STATE_RUN_PART) {
                return parts.get(part).get(reader).getTextCharacters(i, chars, i1, i2);
            } else {
                throw new IllegalStateException();
            }
        }

        public int getTextStart() {
            if (state == STATE_RUN_PART) {
                return parts.get(part).get(reader).getTextStart();
            } else {
                throw new IllegalStateException();
            }
        }

        public int getTextLength() {
            if (state == STATE_RUN_PART) {
                return parts.get(part).get(reader).getTextLength();
            } else {
                throw new IllegalStateException();
            }
        }

        public String getEncoding() {
            throw new UnsupportedOperationException("Not implemented");
        }

        public boolean hasText() {
            if (state == STATE_RUN_PART) {
                return parts.get(part).get(reader).hasText();
            } else {
                return false;
            }
        }

        public Location getLocation() {
            return new Location() {
                public int getCharacterOffset() {
                    return 0;
                }
                public int getColumnNumber() {
                    return 0;
                }
                public int getLineNumber() {
                    return 0;
                }
                public String getPublicId() {
                    return null;
                }
                public String getSystemId() {
                    return null;
                }
            };
        }

        public String getVersion() {
            throw new UnsupportedOperationException("Not implemented");
        }

        public boolean isStandalone() {
            throw new UnsupportedOperationException("Not implemented");
        }

        public boolean standaloneSet() {
            throw new UnsupportedOperationException("Not implemented");
        }

        public String getCharacterEncodingScheme() {
            throw new UnsupportedOperationException("Not implemented");
        }

        public String getPITarget() {
            throw new UnsupportedOperationException("Not implemented");
        }

        public String getPIData() {
            throw new UnsupportedOperationException("Not implemented");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



