⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adaptiveresulttreeimpl.java

📁 java1.6众多例子参考
💻 JAVA
📖 第 1 页 / 共 3 页
字号:
            return super.getDocumentRoot(nodeHandle);        }    }        public XMLString getStringValue(int nodeHandle)    {        if (_dom != null) {            return _dom.getStringValue(nodeHandle);        }        else {            return super.getStringValue(nodeHandle);        }    }        public int getStringValueChunkCount(int nodeHandle)    {        if (_dom != null) {            return _dom.getStringValueChunkCount(nodeHandle);        }        else {            return super.getStringValueChunkCount(nodeHandle);        }    }        public char[] getStringValueChunk(int nodeHandle, int chunkIndex,                                    int[] startAndLen)    {        if (_dom != null) {            return _dom.getStringValueChunk(nodeHandle, chunkIndex, startAndLen);        }        else {            return super.getStringValueChunk(nodeHandle, chunkIndex, startAndLen);        }    }        public int getExpandedTypeID(String namespace, String localName, int type)    {        if (_dom != null) {            return _dom.getExpandedTypeID(namespace, localName, type);        }        else {            return super.getExpandedTypeID(namespace, localName, type);        }    }        public String getLocalNameFromExpandedNameID(int ExpandedNameID)    {        if (_dom != null) {            return _dom.getLocalNameFromExpandedNameID(ExpandedNameID);        }        else {            return super.getLocalNameFromExpandedNameID(ExpandedNameID);        }    }        public String getNamespaceFromExpandedNameID(int ExpandedNameID)    {        if (_dom != null) {            return _dom.getNamespaceFromExpandedNameID(ExpandedNameID);        }        else {            return super.getNamespaceFromExpandedNameID(ExpandedNameID);        }    }        public String getLocalName(int nodeHandle)    {        if (_dom != null) {            return _dom.getLocalName(nodeHandle);        }        else {            return super.getLocalName(nodeHandle);        }    }        public String getPrefix(int nodeHandle)    {        if (_dom != null) {            return _dom.getPrefix(nodeHandle);        }        else {            return super.getPrefix(nodeHandle);        }    }        public String getNamespaceURI(int nodeHandle)    {        if (_dom != null) {            return _dom.getNamespaceURI(nodeHandle);        }        else {            return super.getNamespaceURI(nodeHandle);        }    }        public String getNodeValue(int nodeHandle)    {        if (_dom != null) {            return _dom.getNodeValue(nodeHandle);        }        else {            return super.getNodeValue(nodeHandle);        }    }        public short getNodeType(int nodeHandle)    {        if (_dom != null) {            return _dom.getNodeType(nodeHandle);        }        else {            return super.getNodeType(nodeHandle);        }    }        public short getLevel(int nodeHandle)    {        if (_dom != null) {            return _dom.getLevel(nodeHandle);        }        else {            return super.getLevel(nodeHandle);        }    }        public boolean isSupported(String feature, String version)    {        if (_dom != null) {            return _dom.isSupported(feature, version);        }        else {            return super.isSupported(feature, version);        }    }        public String getDocumentBaseURI()    {        if (_dom != null) {            return _dom.getDocumentBaseURI();        }        else {            return super.getDocumentBaseURI();        }    }        public void setDocumentBaseURI(String baseURI)    {        if (_dom != null) {            _dom.setDocumentBaseURI(baseURI);        }        else {            super.setDocumentBaseURI(baseURI);        }    }        public String getDocumentSystemIdentifier(int nodeHandle)    {        if (_dom != null) {            return _dom.getDocumentSystemIdentifier(nodeHandle);        }        else {            return super.getDocumentSystemIdentifier(nodeHandle);        }    }        public String getDocumentEncoding(int nodeHandle)    {        if (_dom != null) {            return _dom.getDocumentEncoding(nodeHandle);        }        else {            return super.getDocumentEncoding(nodeHandle);        }    }        public String getDocumentStandalone(int nodeHandle)    {        if (_dom != null) {            return _dom.getDocumentStandalone(nodeHandle);        }        else {            return super.getDocumentStandalone(nodeHandle);        }    }        public String getDocumentVersion(int documentHandle)    {        if (_dom != null) {            return _dom.getDocumentVersion(documentHandle);        }        else {            return super.getDocumentVersion(documentHandle);        }    }        public boolean getDocumentAllDeclarationsProcessed()    {        if (_dom != null) {            return _dom.getDocumentAllDeclarationsProcessed();        }        else {            return super.getDocumentAllDeclarationsProcessed();        }    }        public String getDocumentTypeDeclarationSystemIdentifier()    {        if (_dom != null) {            return _dom.getDocumentTypeDeclarationSystemIdentifier();        }        else {            return super.getDocumentTypeDeclarationSystemIdentifier();        }    }        public String getDocumentTypeDeclarationPublicIdentifier()    {        if (_dom != null) {            return _dom.getDocumentTypeDeclarationPublicIdentifier();        }        else {            return super.getDocumentTypeDeclarationPublicIdentifier();        }    }        public int getElementById(String elementId)    {        if (_dom != null) {            return _dom.getElementById(elementId);        }        else {            return super.getElementById(elementId);        }    }            public boolean supportsPreStripping()    {        if (_dom != null) {            return _dom.supportsPreStripping();        }        else {            return super.supportsPreStripping();        }    }        public boolean isNodeAfter(int firstNodeHandle, int secondNodeHandle)    {        if (_dom != null) {            return _dom.isNodeAfter(firstNodeHandle, secondNodeHandle);        }        else {            return super.isNodeAfter(firstNodeHandle, secondNodeHandle);        }    }        public boolean isCharacterElementContentWhitespace(int nodeHandle)    {        if (_dom != null) {            return _dom.isCharacterElementContentWhitespace(nodeHandle);        }        else {            return super.isCharacterElementContentWhitespace(nodeHandle);        }    }        public boolean isDocumentAllDeclarationsProcessed(int documentHandle)    {        if (_dom != null) {            return _dom.isDocumentAllDeclarationsProcessed(documentHandle);        }        else {            return super.isDocumentAllDeclarationsProcessed(documentHandle);        }    }        public boolean isAttributeSpecified(int attributeHandle)    {        if (_dom != null) {            return _dom.isAttributeSpecified(attributeHandle);        }        else {            return super.isAttributeSpecified(attributeHandle);        }    }        public void dispatchCharactersEvents(int nodeHandle, org.xml.sax.ContentHandler ch,                                         boolean normalize)          throws org.xml.sax.SAXException    {        if (_dom != null) {            _dom.dispatchCharactersEvents(nodeHandle,  ch, normalize);        }        else {            super.dispatchCharactersEvents(nodeHandle, ch, normalize);        }    }        public void dispatchToEvents(int nodeHandle, org.xml.sax.ContentHandler ch)      throws org.xml.sax.SAXException    {        if (_dom != null) {            _dom.dispatchToEvents(nodeHandle,  ch);        }        else {            super.dispatchToEvents(nodeHandle, ch);        }    }        public org.w3c.dom.Node getNode(int nodeHandle)    {        if (_dom != null) {            return _dom.getNode(nodeHandle);        }        else {            return super.getNode(nodeHandle);        }    }        public boolean needsTwoThreads()    {        if (_dom != null) {            return _dom.needsTwoThreads();        }        else {            return super.needsTwoThreads();        }    }        public org.xml.sax.ContentHandler getContentHandler()    {        if (_dom != null) {            return _dom.getContentHandler();        }        else {            return super.getContentHandler();        }    }        public org.xml.sax.ext.LexicalHandler getLexicalHandler()    {        if (_dom != null) {            return _dom.getLexicalHandler();        }        else {            return super.getLexicalHandler();        }    }        public org.xml.sax.EntityResolver getEntityResolver()    {        if (_dom != null) {            return _dom.getEntityResolver();        }        else {            return super.getEntityResolver();        }    }        public org.xml.sax.DTDHandler getDTDHandler()    {        if (_dom != null) {            return _dom.getDTDHandler();        }        else {            return super.getDTDHandler();        }    }        public org.xml.sax.ErrorHandler getErrorHandler()    {        if (_dom != null) {            return _dom.getErrorHandler();        }        else {            return super.getErrorHandler();        }    }        public org.xml.sax.ext.DeclHandler getDeclHandler()    {        if (_dom != null) {            return _dom.getDeclHandler();        }        else {            return super.getDeclHandler();        }    }        public void appendChild(int newChild, boolean clone, boolean cloneDepth)    {        if (_dom != null) {            _dom.appendChild(newChild, clone, cloneDepth);        }        else {            super.appendChild(newChild, clone, cloneDepth);        }    }        public void appendTextChild(String str)    {        if (_dom != null) {            _dom.appendTextChild(str);        }        else {            super.appendTextChild(str);        }    }        public SourceLocator getSourceLocatorFor(int node)    {        if (_dom != null) {            return _dom.getSourceLocatorFor(node);        }        else {            return super.getSourceLocatorFor(node);        }    }        public void documentRegistration()    {        if (_dom != null) {            _dom.documentRegistration();        }        else {            super.documentRegistration();        }    }        public void documentRelease()    {        if (_dom != null) {            _dom.documentRelease();        }        else {            super.documentRelease();        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -