This commit is contained in:
King_DuckZ 2020-02-17 22:08:05 +01:00
parent 15f148013b
commit 600ada66f5
661 changed files with 1249 additions and 1049 deletions

13
ChangeLog Normal file
View file

@ -0,0 +1,13 @@
XQilla: an XQuery and XPath 2.0 library and command line interpreter.
version 1.0.1 (2007.02.12):
* Fixed fn:concat() to accept more than 51 arguments.
* Fixed module parsing, to use the correct language enumeration when
parsing. Output modules in the query plan.
* Fixed a race condition in the parsing of function signatures.
* Fixed parse errors in the DOM3 API, which were being thrown as
XQException instead of XQillaException. [1626534]
* Fixed the building of shared libraries under Cygwin, by adding
-no-undefined to the libtool line in the Makefile. [1639669]
* Fixed a bug in the static typing of user defined functions, that
could result in incorrect errors.

View file

@ -3,13 +3,17 @@ SUBDIRS = include
INCLUDES = -I$(top_srcdir)/include/ -I$(xerces_include) -I$(top_srcdir)/src/lexer/ INCLUDES = -I$(top_srcdir)/include/ -I$(xerces_include) -I$(top_srcdir)/src/lexer/
LDFLAGS = -L$(xerces_lib) -R$(xerces_lib) LDFLAGS = -L$(xerces_lib) -R$(xerces_lib)
LDADD = libxqilla.la -lxerces-c LDADD = libxqilla.la
bin_PROGRAMS = xqilla bin_PROGRAMS = xqilla
noinst_PROGRAMS = basicXQillaUsage xqtsRunner noinst_PROGRAMS = basicXQillaUsage xqtsRunner
lib_LTLIBRARIES = libxqilla.la lib_LTLIBRARIES = libxqilla.la
# Library version, see http://sourceware.org/autobook/autobook/autobook_91.html
# -no-undefined for Cygwin (bug #1639669)
libxqilla_la_LDFLAGS = -version-info 1:0:0 -no-undefined -lxerces-c
libxqilla_la_SOURCES = \ libxqilla_la_SOURCES = \
src/framework/ReferenceCounted.cpp \ src/framework/ReferenceCounted.cpp \
src/framework/BaseMemoryManager.cpp \ src/framework/BaseMemoryManager.cpp \
@ -391,6 +395,7 @@ EXTRA_DIST = \
src/lexer/flex.skl \ src/lexer/flex.skl \
src/lexer/XQLexer.l \ src/lexer/XQLexer.l \
src/parser/XQParser.y \ src/parser/XQParser.y \
ChangeLog \
LICENSE \ LICENSE \
LICENSE.pathan.txt \ LICENSE.pathan.txt \
LICENSE.xquery.txt \ LICENSE.xquery.txt \

View file

@ -42,7 +42,7 @@ bin_PROGRAMS = xqilla$(EXEEXT)
noinst_PROGRAMS = basicXQillaUsage$(EXEEXT) xqtsRunner$(EXEEXT) noinst_PROGRAMS = basicXQillaUsage$(EXEEXT) xqtsRunner$(EXEEXT)
DIST_COMMON = $(am__configure_deps) $(srcdir)/Makefile.am \ DIST_COMMON = $(am__configure_deps) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(top_srcdir)/configure \ $(srcdir)/Makefile.in $(top_srcdir)/configure \
$(top_srcdir)/src/config/xqilla_config_unix.h.in \ $(top_srcdir)/src/config/xqilla_config_unix.h.in ChangeLog \
autotools/config.guess autotools/config.sub autotools/depcomp \ autotools/config.guess autotools/config.sub autotools/depcomp \
autotools/install-sh autotools/ltmain.sh autotools/missing \ autotools/install-sh autotools/ltmain.sh autotools/missing \
autotools/mkinstalldirs autotools/mkinstalldirs
@ -355,8 +355,12 @@ xerces_lib = @xerces_lib@
AUTOMAKE_OPTIONS = foreign dist-zip AUTOMAKE_OPTIONS = foreign dist-zip
SUBDIRS = include SUBDIRS = include
INCLUDES = -I$(top_srcdir)/include/ -I$(xerces_include) -I$(top_srcdir)/src/lexer/ INCLUDES = -I$(top_srcdir)/include/ -I$(xerces_include) -I$(top_srcdir)/src/lexer/
LDADD = libxqilla.la -lxerces-c LDADD = libxqilla.la
lib_LTLIBRARIES = libxqilla.la lib_LTLIBRARIES = libxqilla.la
# Library version, see http://sourceware.org/autobook/autobook/autobook_91.html
# -no-undefined for Cygwin (bug #1639669)
libxqilla_la_LDFLAGS = -version-info 1:0:0 -no-undefined -lxerces-c
libxqilla_la_SOURCES = \ libxqilla_la_SOURCES = \
src/framework/ReferenceCounted.cpp \ src/framework/ReferenceCounted.cpp \
src/framework/BaseMemoryManager.cpp \ src/framework/BaseMemoryManager.cpp \
@ -738,6 +742,7 @@ EXTRA_DIST = \
src/lexer/flex.skl \ src/lexer/flex.skl \
src/lexer/XQLexer.l \ src/lexer/XQLexer.l \
src/parser/XQParser.y \ src/parser/XQParser.y \
ChangeLog \
LICENSE \ LICENSE \
LICENSE.pathan.txt \ LICENSE.pathan.txt \
LICENSE.xquery.txt \ LICENSE.xquery.txt \

20
configure vendored
View file

@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59 for XQilla 1.0. # Generated by GNU Autoconf 2.59 for XQilla 1.0.1.
# #
# Copyright (C) 2003 Free Software Foundation, Inc. # Copyright (C) 2003 Free Software Foundation, Inc.
# This configure script is free software; the Free Software Foundation # This configure script is free software; the Free Software Foundation
@ -421,8 +421,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package. # Identity of this package.
PACKAGE_NAME='XQilla' PACKAGE_NAME='XQilla'
PACKAGE_TARNAME='xqilla' PACKAGE_TARNAME='xqilla'
PACKAGE_VERSION='1.0' PACKAGE_VERSION='1.0.1'
PACKAGE_STRING='XQilla 1.0' PACKAGE_STRING='XQilla 1.0.1'
PACKAGE_BUGREPORT='' PACKAGE_BUGREPORT=''
ac_unique_file="src/runtime/Result.cpp" ac_unique_file="src/runtime/Result.cpp"
@ -952,7 +952,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing. # Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh. # This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF cat <<_ACEOF
\`configure' configures XQilla 1.0 to adapt to many kinds of systems. \`configure' configures XQilla 1.0.1 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]... Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1019,7 +1019,7 @@ fi
if test -n "$ac_init_help"; then if test -n "$ac_init_help"; then
case $ac_init_help in case $ac_init_help in
short | recursive ) echo "Configuration of XQilla 1.0:";; short | recursive ) echo "Configuration of XQilla 1.0.1:";;
esac esac
cat <<\_ACEOF cat <<\_ACEOF
@ -1159,7 +1159,7 @@ fi
test -n "$ac_init_help" && exit 0 test -n "$ac_init_help" && exit 0
if $ac_init_version; then if $ac_init_version; then
cat <<\_ACEOF cat <<\_ACEOF
XQilla configure 1.0 XQilla configure 1.0.1
generated by GNU Autoconf 2.59 generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc. Copyright (C) 2003 Free Software Foundation, Inc.
@ -1173,7 +1173,7 @@ cat >&5 <<_ACEOF
This file contains any messages produced by compilers while This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake. running configure, to aid debugging if configure makes a mistake.
It was created by XQilla $as_me 1.0, which was It was created by XQilla $as_me 1.0.1, which was
generated by GNU Autoconf 2.59. Invocation command line was generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@ $ $0 $@
@ -1898,7 +1898,7 @@ fi
# Define the identity of the package. # Define the identity of the package.
PACKAGE=XQilla PACKAGE=XQilla
VERSION=1.0 VERSION=1.0.1
cat >>confdefs.h <<_ACEOF cat >>confdefs.h <<_ACEOF
@ -21907,7 +21907,7 @@ _ASBOX
} >&5 } >&5
cat >&5 <<_CSEOF cat >&5 <<_CSEOF
This file was extended by XQilla $as_me 1.0, which was This file was extended by XQilla $as_me 1.0.1, which was
generated by GNU Autoconf 2.59. Invocation command line was generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES CONFIG_FILES = $CONFIG_FILES
@ -21970,7 +21970,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\ ac_cs_version="\\
XQilla config.status 1.0 XQilla config.status 1.0.1
configured by $0, generated by GNU Autoconf 2.59, configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"

View file

@ -2,10 +2,10 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59) AC_PREREQ(2.59)
AC_INIT([XQilla],[1.0],[]) AC_INIT([XQilla],[1.0.1],[])
AC_CONFIG_AUX_DIR(autotools) AC_CONFIG_AUX_DIR(autotools)
AC_CANONICAL_TARGET([]) AC_CANONICAL_TARGET([])
AM_INIT_AUTOMAKE(XQilla, 1.0,) AM_INIT_AUTOMAKE(XQilla, 1.0.1,)
AC_CONFIG_SRCDIR([src/runtime/Result.cpp]) AC_CONFIG_SRCDIR([src/runtime/Result.cpp])
AC_CONFIG_HEADERS([src/config/xqilla_config_unix.h]) AC_CONFIG_HEADERS([src/config/xqilla_config_unix.h])

View file

@ -101,7 +101,7 @@
<a name="l00178"></a>00178 <span class="preprocessor">#endif</span> <a name="l00178"></a>00178 <span class="preprocessor">#endif</span>
<a name="l00179"></a>00179 <span class="preprocessor"></span> <a name="l00179"></a>00179 <span class="preprocessor"></span>
<a name="l00180"></a>00180 <a name="l00180"></a>00180
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMAttr.html">DOMAttr</a></code> class refers to an attribute of an XML element. <a href="classxercesc_1_1DOMAttr.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMAttr.html">DOMAttr</a></code> class refers to an attribute of an XML element. <a href="classxercesc_1_1DOMAttr.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -182,7 +182,7 @@
<a name="l00683"></a>00683 XERCES_CPP_NAMESPACE_END <a name="l00683"></a>00683 XERCES_CPP_NAMESPACE_END
<a name="l00684"></a>00684 <a name="l00684"></a>00684
<a name="l00685"></a>00685 <span class="preprocessor">#endif</span> <a name="l00685"></a>00685 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -39,7 +39,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMBuilder.html">DOMBuilder</a> provides an API for parsing XML documents and building the corresponding DOM document tree. <a href="classxercesc_1_1DOMBuilder.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMBuilder.html">DOMBuilder</a> provides an API for parsing XML documents and building the corresponding DOM document tree. <a href="classxercesc_1_1DOMBuilder.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -74,7 +74,7 @@
<a name="l00102"></a>00102 <span class="preprocessor">#endif</span> <a name="l00102"></a>00102 <span class="preprocessor">#endif</span>
<a name="l00103"></a>00103 <span class="preprocessor"></span> <a name="l00103"></a>00103 <span class="preprocessor"></span>
<a name="l00104"></a>00104 <a name="l00104"></a>00104
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. <a href="classxercesc_1_1DOMCDATASection.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. <a href="classxercesc_1_1DOMCDATASection.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -102,7 +102,7 @@
<a name="l00212"></a>00212 <span class="preprocessor">#endif</span> <a name="l00212"></a>00212 <span class="preprocessor">#endif</span>
<a name="l00213"></a>00213 <span class="preprocessor"></span> <a name="l00213"></a>00213 <span class="preprocessor"></span>
<a name="l00214"></a>00214 <a name="l00214"></a>00214
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -46,7 +46,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMCharacterData.html">DOMCharacterData</a></code> interface extends <a class="el" href="classxercesc_1_1DOMNode.html">DOMNode</a> with a set of attributes and methods for accessing character data in the DOM. <a href="classxercesc_1_1DOMCharacterData.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMCharacterData.html">DOMCharacterData</a></code> interface extends <a class="el" href="classxercesc_1_1DOMNode.html">DOMNode</a> with a set of attributes and methods for accessing character data in the DOM. <a href="classxercesc_1_1DOMCharacterData.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -72,7 +72,7 @@
<a name="l00074"></a>00074 <a name="l00074"></a>00074
<a name="l00075"></a>00075 <span class="preprocessor">#endif</span> <a name="l00075"></a>00075 <span class="preprocessor">#endif</span>
<a name="l00076"></a>00076 <span class="preprocessor"></span> <a name="l00076"></a>00076 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface inherits from <code>CharacterData</code> and represents the content of a comment, i.e., all the characters between the starting ' <code>&lt;!--</code>' and ending '<code>--&gt;</code>'. <a href="classxercesc_1_1DOMComment.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface inherits from <code>CharacterData</code> and represents the content of a comment, i.e., all the characters between the starting ' <code>&lt;!--</code>' and ending '<code>--&gt;</code>'. <a href="classxercesc_1_1DOMComment.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -89,7 +89,7 @@
<a name="l00504"></a>00504 <a name="l00504"></a>00504
<a name="l00505"></a>00505 <span class="preprocessor">#endif </span> <a name="l00505"></a>00505 <span class="preprocessor">#endif </span>
<a name="l00506"></a>00506 <span class="preprocessor"></span> <a name="l00506"></a>00506 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -66,7 +66,7 @@ This graph shows which files directly or indirectly include this file:<p><center
</td> </td>
</tr> </tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -72,7 +72,7 @@
<a name="l00106"></a>00106 XERCES_CPP_NAMESPACE_END <a name="l00106"></a>00106 XERCES_CPP_NAMESPACE_END
<a name="l00107"></a>00107 <a name="l00107"></a>00107
<a name="l00108"></a>00108 <span class="preprocessor">#endif</span> <a name="l00108"></a>00108 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -43,7 +43,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a> is a "lightweight" or "minimal" <a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a> object. <a href="classxercesc_1_1DOMDocumentFragment.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMDocumentFragment.html">DOMDocumentFragment</a> is a "lightweight" or "minimal" <a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a> object. <a href="classxercesc_1_1DOMDocumentFragment.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -80,7 +80,7 @@
<a name="l00092"></a>00092 XERCES_CPP_NAMESPACE_END <a name="l00092"></a>00092 XERCES_CPP_NAMESPACE_END
<a name="l00093"></a>00093 <a name="l00093"></a>00093
<a name="l00094"></a>00094 <span class="preprocessor">#endif</span> <a name="l00094"></a>00094 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -39,7 +39,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentRange.html">xercesc::DOMDocumentRange</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMDocumentRange.html">xercesc::DOMDocumentRange</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -90,7 +90,7 @@
<a name="l00152"></a>00152 XERCES_CPP_NAMESPACE_END <a name="l00152"></a>00152 XERCES_CPP_NAMESPACE_END
<a name="l00153"></a>00153 <a name="l00153"></a>00153
<a name="l00154"></a>00154 <span class="preprocessor">#endif</span> <a name="l00154"></a>00154 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><code><a class="el" href="classxercesc_1_1DOMDocumentTraversal.html">DOMDocumentTraversal</a></code> contains methods that create <code>DOMNodeIterators</code> and <code>DOMTreeWalkers</code> to traverse a node and its children in document order (depth first, pre-order traversal, which is equivalent to the order in which the start tags occur in the text representation of the document). <a href="classxercesc_1_1DOMDocumentTraversal.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><code><a class="el" href="classxercesc_1_1DOMDocumentTraversal.html">DOMDocumentTraversal</a></code> contains methods that create <code>DOMNodeIterators</code> and <code>DOMTreeWalkers</code> to traverse a node and its children in document order (depth first, pre-order traversal, which is equivalent to the order in which the start tags occur in the text representation of the document). <a href="classxercesc_1_1DOMDocumentTraversal.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -92,7 +92,7 @@
<a name="l00158"></a>00158 <span class="preprocessor">#endif</span> <a name="l00158"></a>00158 <span class="preprocessor">#endif</span>
<a name="l00159"></a>00159 <span class="preprocessor"></span> <a name="l00159"></a>00159 <span class="preprocessor"></span>
<a name="l00160"></a>00160 <a name="l00160"></a>00160
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -43,7 +43,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Each <code><a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a></code> has a <code>doctype</code> attribute whose value is either <code>null</code> or a <code><a class="el" href="classxercesc_1_1DOMDocumentType.html">DOMDocumentType</a></code> object. <a href="classxercesc_1_1DOMDocumentType.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Each <code><a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a></code> has a <code>doctype</code> attribute whose value is either <code>null</code> or a <code><a class="el" href="classxercesc_1_1DOMDocumentType.html">DOMDocumentType</a></code> object. <a href="classxercesc_1_1DOMDocumentType.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -200,7 +200,7 @@
<a name="l00876"></a>00876 XERCES_CPP_NAMESPACE_END <a name="l00876"></a>00876 XERCES_CPP_NAMESPACE_END
<a name="l00877"></a>00877 <a name="l00877"></a>00877
<a name="l00878"></a>00878 <span class="preprocessor">#endif</span> <a name="l00878"></a>00878 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a></code> interface represents the entire XML document. <a href="classxercesc_1_1DOMDocument.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMDocument.html">DOMDocument</a></code> interface represents the entire XML document. <a href="classxercesc_1_1DOMDocument.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -141,7 +141,7 @@
<a name="l00468"></a>00468 <span class="preprocessor"></span> <a name="l00468"></a>00468 <span class="preprocessor"></span>
<a name="l00469"></a>00469 <a name="l00469"></a>00469
<a name="l00470"></a>00470 <a name="l00470"></a>00470
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -44,7 +44,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">By far the vast majority of objects (apart from text) that authors encounter when traversing a document are <code><a class="el" href="classxercesc_1_1DOMElement.html">DOMElement</a></code> nodes. <a href="classxercesc_1_1DOMElement.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">By far the vast majority of objects (apart from text) that authors encounter when traversing a document are <code><a class="el" href="classxercesc_1_1DOMElement.html">DOMElement</a></code> nodes. <a href="classxercesc_1_1DOMElement.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -74,7 +74,7 @@
<a name="l00094"></a>00094 <span class="preprocessor">#endif</span> <a name="l00094"></a>00094 <span class="preprocessor">#endif</span>
<a name="l00095"></a>00095 <span class="preprocessor"></span> <a name="l00095"></a>00095 <span class="preprocessor"></span>
<a name="l00096"></a>00096 <a name="l00096"></a>00096
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -43,7 +43,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><code><a class="el" href="classxercesc_1_1DOMEntityReference.html">DOMEntityReference</a></code> objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference. <a href="classxercesc_1_1DOMEntityReference.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><code><a class="el" href="classxercesc_1_1DOMEntityReference.html">DOMEntityReference</a></code> objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference. <a href="classxercesc_1_1DOMEntityReference.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -85,7 +85,7 @@
<a name="l00142"></a>00142 XERCES_CPP_NAMESPACE_END <a name="l00142"></a>00142 XERCES_CPP_NAMESPACE_END
<a name="l00143"></a>00143 <a name="l00143"></a>00143
<a name="l00144"></a>00144 <span class="preprocessor">#endif</span> <a name="l00144"></a>00144 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -39,7 +39,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMEntityResolver.html">DOMEntityResolver</a> provides a way for applications to redirect references to external entities. <a href="classxercesc_1_1DOMEntityResolver.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMEntityResolver.html">DOMEntityResolver</a> provides a way for applications to redirect references to external entities. <a href="classxercesc_1_1DOMEntityResolver.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -96,7 +96,7 @@
<a name="l00205"></a>00205 <a name="l00205"></a>00205
<a name="l00206"></a>00206 <span class="preprocessor">#endif</span> <a name="l00206"></a>00206 <span class="preprocessor">#endif</span>
<a name="l00207"></a>00207 <span class="preprocessor"></span> <a name="l00207"></a>00207 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -43,7 +43,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface represents an entity, either parsed or unparsed, in an XML document. <a href="classxercesc_1_1DOMEntity.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface represents an entity, either parsed or unparsed, in an XML document. <a href="classxercesc_1_1DOMEntity.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -79,7 +79,7 @@
<a name="l00106"></a>00106 XERCES_CPP_NAMESPACE_END <a name="l00106"></a>00106 XERCES_CPP_NAMESPACE_END
<a name="l00107"></a>00107 <a name="l00107"></a>00107
<a name="l00108"></a>00108 <span class="preprocessor">#endif</span> <a name="l00108"></a>00108 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Basic interface for DOM error handlers. <a href="classxercesc_1_1DOMErrorHandler.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Basic interface for DOM error handlers. <a href="classxercesc_1_1DOMErrorHandler.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -120,7 +120,7 @@
<a name="l00250"></a>00250 XERCES_CPP_NAMESPACE_END <a name="l00250"></a>00250 XERCES_CPP_NAMESPACE_END
<a name="l00251"></a>00251 <a name="l00251"></a>00251
<a name="l00252"></a>00252 <span class="preprocessor">#endif</span> <a name="l00252"></a>00252 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -39,7 +39,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMError.html">DOMError</a> is an interface that describes an error. <a href="classxercesc_1_1DOMError.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMError.html">DOMError</a> is an interface that describes an error. <a href="classxercesc_1_1DOMError.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -35,7 +35,7 @@ Include dependency graph for DOMException.cpp:<p><center><img src="DOMException_
<tr><td class="memItemLeft" nowrap align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -128,7 +128,7 @@
<a name="l00251"></a>00251 <a name="l00251"></a>00251
<a name="l00252"></a>00252 <span class="preprocessor">#endif</span> <a name="l00252"></a>00252 <span class="preprocessor">#endif</span>
<a name="l00253"></a>00253 <span class="preprocessor"></span> <a name="l00253"></a>00253 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -48,7 +48,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMException.html">xercesc::DOMException</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMException.html">xercesc::DOMException</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -104,7 +104,7 @@
<a name="l00177"></a>00177 XERCES_CPP_NAMESPACE_END <a name="l00177"></a>00177 XERCES_CPP_NAMESPACE_END
<a name="l00178"></a>00178 <a name="l00178"></a>00178
<a name="l00179"></a>00179 <span class="preprocessor">#endif</span> <a name="l00179"></a>00179 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -43,7 +43,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMImplementationLS.html">xercesc::DOMImplementationLS</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMImplementationLS.html">xercesc::DOMImplementationLS</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -65,7 +65,7 @@
<a name="l00086"></a>00086 XERCES_CPP_NAMESPACE_END <a name="l00086"></a>00086 XERCES_CPP_NAMESPACE_END
<a name="l00087"></a>00087 <a name="l00087"></a>00087
<a name="l00088"></a>00088 <span class="preprocessor">#endif</span> <a name="l00088"></a>00088 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -38,7 +38,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMImplementationRegistry.html">xercesc::DOMImplementationRegistry</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMImplementationRegistry.html">xercesc::DOMImplementationRegistry</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -79,7 +79,7 @@
<a name="l00099"></a>00099 XERCES_CPP_NAMESPACE_END <a name="l00099"></a>00099 XERCES_CPP_NAMESPACE_END
<a name="l00100"></a>00100 <a name="l00100"></a>00100
<a name="l00101"></a>00101 <span class="preprocessor">#endif</span> <a name="l00101"></a>00101 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -38,7 +38,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMImplementationSource.html">xercesc::DOMImplementationSource</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMImplementationSource.html">xercesc::DOMImplementationSource</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -122,7 +122,7 @@
<a name="l00265"></a>00265 XERCES_CPP_NAMESPACE_END <a name="l00265"></a>00265 XERCES_CPP_NAMESPACE_END
<a name="l00266"></a>00266 <a name="l00266"></a>00266
<a name="l00267"></a>00267 <span class="preprocessor">#endif</span> <a name="l00267"></a>00267 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -49,7 +49,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMImplementation.html">DOMImplementation</a></code> interface provides a number of methods for performing operations that are independent of any particular instance of the document object model. <a href="classxercesc_1_1DOMImplementation.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMImplementation.html">DOMImplementation</a></code> interface provides a number of methods for performing operations that are independent of any particular instance of the document object model. <a href="classxercesc_1_1DOMImplementation.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -117,7 +117,7 @@
<a name="l00277"></a>00277 XERCES_CPP_NAMESPACE_END <a name="l00277"></a>00277 XERCES_CPP_NAMESPACE_END
<a name="l00278"></a>00278 <a name="l00278"></a>00278
<a name="l00279"></a>00279 <span class="preprocessor">#endif</span> <a name="l00279"></a>00279 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -39,7 +39,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface represents a single input source for an XML entity. <a href="classxercesc_1_1DOMInputSource.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface represents a single input source for an XML entity. <a href="classxercesc_1_1DOMInputSource.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -103,7 +103,7 @@
<a name="l00205"></a>00205 XERCES_CPP_NAMESPACE_END <a name="l00205"></a>00205 XERCES_CPP_NAMESPACE_END
<a name="l00206"></a>00206 <a name="l00206"></a>00206
<a name="l00207"></a>00207 <span class="preprocessor">#endif</span> <a name="l00207"></a>00207 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -39,7 +39,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMLocator.html">DOMLocator</a> is an interface that describes a location. <a href="classxercesc_1_1DOMLocator.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight"><a class="el" href="classxercesc_1_1DOMLocator.html">DOMLocator</a> is an interface that describes a location. <a href="classxercesc_1_1DOMLocator.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -106,7 +106,7 @@
<a name="l00244"></a>00244 <a name="l00244"></a>00244
<a name="l00245"></a>00245 <span class="preprocessor">#endif</span> <a name="l00245"></a>00245 <span class="preprocessor">#endif</span>
<a name="l00246"></a>00246 <span class="preprocessor"></span> <a name="l00246"></a>00246 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -66,7 +66,7 @@ This graph shows which files directly or indirectly include this file:<p><center
</td> </td>
</tr> </tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -99,7 +99,7 @@
<a name="l00215"></a>00215 XERCES_CPP_NAMESPACE_END <a name="l00215"></a>00215 XERCES_CPP_NAMESPACE_END
<a name="l00216"></a>00216 <a name="l00216"></a>00216
<a name="l00217"></a>00217 <span class="preprocessor">#endif</span> <a name="l00217"></a>00217 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -46,7 +46,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Filters are objects that know how to "filter out" nodes. <a href="classxercesc_1_1DOMNodeFilter.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Filters are objects that know how to "filter out" nodes. <a href="classxercesc_1_1DOMNodeFilter.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -100,7 +100,7 @@
<a name="l00193"></a>00193 XERCES_CPP_NAMESPACE_END <a name="l00193"></a>00193 XERCES_CPP_NAMESPACE_END
<a name="l00194"></a>00194 <a name="l00194"></a>00194
<a name="l00195"></a>00195 <span class="preprocessor">#endif</span> <a name="l00195"></a>00195 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -71,7 +71,7 @@ This graph shows which files directly or indirectly include this file:<p><center
</td> </td>
</tr> </tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -84,7 +84,7 @@
<a name="l00111"></a>00111 <span class="preprocessor">#endif</span> <a name="l00111"></a>00111 <span class="preprocessor">#endif</span>
<a name="l00112"></a>00112 <span class="preprocessor"></span> <a name="l00112"></a>00112 <span class="preprocessor"></span>
<a name="l00113"></a>00113 <a name="l00113"></a>00113
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -39,7 +39,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMNodeList.html">DOMNodeList</a></code> interface provides the abstraction of an ordered collection of nodes. <a href="classxercesc_1_1DOMNodeList.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMNodeList.html">DOMNodeList</a></code> interface provides the abstraction of an ordered collection of nodes. <a href="classxercesc_1_1DOMNodeList.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -234,7 +234,7 @@
<a name="l00957"></a>00957 <a name="l00957"></a>00957
<a name="l00958"></a>00958 <span class="preprocessor">#endif</span> <a name="l00958"></a>00958 <span class="preprocessor">#endif</span>
<a name="l00959"></a>00959 <span class="preprocessor"></span> <a name="l00959"></a>00959 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -178,7 +178,7 @@ This graph shows which files directly or indirectly include this file:<p><center
</td> </td>
</tr> </tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -85,7 +85,7 @@
<a name="l00111"></a>00111 <span class="preprocessor">#endif</span> <a name="l00111"></a>00111 <span class="preprocessor">#endif</span>
<a name="l00112"></a>00112 <span class="preprocessor"></span> <a name="l00112"></a>00112 <span class="preprocessor"></span>
<a name="l00113"></a>00113 <a name="l00113"></a>00113
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -43,7 +43,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface represents a notation declared in the DTD. <a href="classxercesc_1_1DOMNotation.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This interface represents a notation declared in the DTD. <a href="classxercesc_1_1DOMNotation.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -95,7 +95,7 @@
<a name="l00114"></a>00114 <a name="l00114"></a>00114
<a name="l00115"></a>00115 <span class="preprocessor">#endif</span> <a name="l00115"></a>00115 <span class="preprocessor">#endif</span>
<a name="l00116"></a>00116 <span class="preprocessor"></span> <a name="l00116"></a>00116 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -60,7 +60,7 @@ Include dependency graph for DOMPSVITypeInfo.hpp:<p><center><img src="DOMPSVITyp
</td> </td>
</tr> </tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -88,7 +88,7 @@
<a name="l00119"></a>00119 <a name="l00119"></a>00119
<a name="l00120"></a>00120 <span class="preprocessor">#endif</span> <a name="l00120"></a>00120 <span class="preprocessor">#endif</span>
<a name="l00121"></a>00121 <span class="preprocessor"></span> <a name="l00121"></a>00121 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -43,7 +43,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMProcessingInstruction.html">DOMProcessingInstruction</a></code> interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document. <a href="classxercesc_1_1DOMProcessingInstruction.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMProcessingInstruction.html">DOMProcessingInstruction</a></code> interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document. <a href="classxercesc_1_1DOMProcessingInstruction.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -32,7 +32,7 @@ Include dependency graph for DOMRangeException.cpp:<p><center><img src="DOMRange
<tr><td class="memItemLeft" nowrap align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -91,7 +91,7 @@
<a name="l00130"></a>00130 <a name="l00130"></a>00130
<a name="l00131"></a>00131 <span class="preprocessor">#endif</span> <a name="l00131"></a>00131 <span class="preprocessor">#endif</span>
<a name="l00132"></a>00132 <span class="preprocessor"></span> <a name="l00132"></a>00132 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -46,7 +46,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Range operations may throw a <code><a class="el" href="classxercesc_1_1DOMRangeException.html">DOMRangeException</a></code> as specified in their method descriptions. <a href="classxercesc_1_1DOMRangeException.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Range operations may throw a <code><a class="el" href="classxercesc_1_1DOMRangeException.html">DOMRangeException</a></code> as specified in their method descriptions. <a href="classxercesc_1_1DOMRangeException.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -149,7 +149,7 @@
<a name="l00527"></a>00527 XERCES_CPP_NAMESPACE_END <a name="l00527"></a>00527 XERCES_CPP_NAMESPACE_END
<a name="l00528"></a>00528 <a name="l00528"></a>00528
<a name="l00529"></a>00529 <span class="preprocessor">#endif</span> <a name="l00529"></a>00529 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -38,7 +38,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMRange.html">xercesc::DOMRange</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMRange.html">xercesc::DOMRange</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -90,7 +90,7 @@
<a name="l00186"></a>00186 <span class="preprocessor">#endif</span> <a name="l00186"></a>00186 <span class="preprocessor">#endif</span>
<a name="l00187"></a>00187 <span class="preprocessor"></span> <a name="l00187"></a>00187 <span class="preprocessor"></span>
<a name="l00188"></a>00188 <a name="l00188"></a>00188
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -45,7 +45,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMText.html">DOMText</a></code> interface inherits from <code><a class="el" href="classxercesc_1_1DOMCharacterData.html">DOMCharacterData</a></code> and represents the textual content (termed character data in XML) of an <code><a class="el" href="classxercesc_1_1DOMElement.html">DOMElement</a></code> or <code><a class="el" href="classxercesc_1_1DOMAttr.html">DOMAttr</a></code>. <a href="classxercesc_1_1DOMText.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMText.html">DOMText</a></code> interface inherits from <code><a class="el" href="classxercesc_1_1DOMCharacterData.html">DOMCharacterData</a></code> and represents the textual content (termed character data in XML) of an <code><a class="el" href="classxercesc_1_1DOMElement.html">DOMElement</a></code> or <code><a class="el" href="classxercesc_1_1DOMAttr.html">DOMAttr</a></code>. <a href="classxercesc_1_1DOMText.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -115,7 +115,7 @@
<a name="l00273"></a>00273 XERCES_CPP_NAMESPACE_END <a name="l00273"></a>00273 XERCES_CPP_NAMESPACE_END
<a name="l00274"></a>00274 <a name="l00274"></a>00274
<a name="l00275"></a>00275 <span class="preprocessor">#endif</span> <a name="l00275"></a>00275 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -71,7 +71,7 @@ This graph shows which files directly or indirectly include this file:<p><center
</td> </td>
</tr> </tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -78,7 +78,7 @@
<a name="l00102"></a>00102 <a name="l00102"></a>00102
<a name="l00103"></a>00103 <span class="preprocessor">#endif</span> <a name="l00103"></a>00103 <span class="preprocessor">#endif</span>
<a name="l00104"></a>00104 <span class="preprocessor"></span> <a name="l00104"></a>00104 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -68,7 +68,7 @@ This graph shows which files directly or indirectly include this file:<p><center
</td> </td>
</tr> </tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -92,7 +92,7 @@
<a name="l00137"></a>00137 <a name="l00137"></a>00137
<a name="l00138"></a>00138 <span class="preprocessor">#endif</span> <a name="l00138"></a>00138 <span class="preprocessor">#endif</span>
<a name="l00139"></a>00139 <span class="preprocessor"></span> <a name="l00139"></a>00139 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -43,7 +43,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">When associating an object to a key on a node using <code>setUserData</code> the application can provide a handler that gets called when the node the object is associated to is being cloned or imported. <a href="classxercesc_1_1DOMUserDataHandler.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">When associating an object to a key on a node using <code>setUserData</code> the application can provide a handler that gets called when the node the object is associated to is being cloned or imported. <a href="classxercesc_1_1DOMUserDataHandler.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -105,7 +105,7 @@
<a name="l00145"></a>00145 XERCES_CPP_NAMESPACE_END <a name="l00145"></a>00145 XERCES_CPP_NAMESPACE_END
<a name="l00146"></a>00146 <a name="l00146"></a>00146
<a name="l00147"></a>00147 <span class="preprocessor">#endif</span> <a name="l00147"></a>00147 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -43,7 +43,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMWriterFilter.html">xercesc::DOMWriterFilter</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMWriterFilter.html">xercesc::DOMWriterFilter</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -122,7 +122,7 @@
<a name="l00542"></a>00542 XERCES_CPP_NAMESPACE_END <a name="l00542"></a>00542 XERCES_CPP_NAMESPACE_END
<a name="l00543"></a>00543 <a name="l00543"></a>00543
<a name="l00544"></a>00544 <span class="preprocessor">#endif</span> <a name="l00544"></a>00544 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -46,7 +46,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMWriter.html">xercesc::DOMWriter</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMWriter.html">xercesc::DOMWriter</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -84,7 +84,7 @@
<a name="l00169"></a>00169 XERCES_CPP_NAMESPACE_END <a name="l00169"></a>00169 XERCES_CPP_NAMESPACE_END
<a name="l00170"></a>00170 <a name="l00170"></a>00170
<a name="l00171"></a>00171 <span class="preprocessor">#endif</span> <a name="l00171"></a>00171 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The evaluation of XPath expressions is provided by <code><a class="el" href="classxercesc_1_1DOMXPathEvaluator.html">DOMXPathEvaluator</a></code>. <a href="classxercesc_1_1DOMXPathEvaluator.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The evaluation of XPath expressions is provided by <code><a class="el" href="classxercesc_1_1DOMXPathEvaluator.html">DOMXPathEvaluator</a></code>. <a href="classxercesc_1_1DOMXPathEvaluator.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -30,7 +30,7 @@ Include dependency graph for DOMXPathException.cpp:<p><center><img src="DOMXPath
<tr><td class="memItemLeft" nowrap align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacexercesc.html">xercesc</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -83,7 +83,7 @@
<a name="l00114"></a>00114 XERCES_CPP_NAMESPACE_END <a name="l00114"></a>00114 XERCES_CPP_NAMESPACE_END
<a name="l00115"></a>00115 <a name="l00115"></a>00115
<a name="l00116"></a>00116 <span class="preprocessor">#endif</span> <a name="l00116"></a>00116 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -41,7 +41,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMXPathException.html">xercesc::DOMXPathException</a></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxercesc_1_1DOMXPathException.html">xercesc::DOMXPathException</a></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -73,7 +73,7 @@
<a name="l00105"></a>00105 XERCES_CPP_NAMESPACE_END <a name="l00105"></a>00105 XERCES_CPP_NAMESPACE_END
<a name="l00106"></a>00106 <a name="l00106"></a>00106
<a name="l00107"></a>00107 <span class="preprocessor">#endif</span> <a name="l00107"></a>00107 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMXPathExpression.html">DOMXPathExpression</a></code> interface represents a parsed and resolved XPath expression. <a href="classxercesc_1_1DOMXPathExpression.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMXPathExpression.html">DOMXPathExpression</a></code> interface represents a parsed and resolved XPath expression. <a href="classxercesc_1_1DOMXPathExpression.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -81,7 +81,7 @@
<a name="l00105"></a>00105 <a name="l00105"></a>00105
<a name="l00106"></a>00106 <span class="preprocessor">#endif</span> <a name="l00106"></a>00106 <span class="preprocessor">#endif</span>
<a name="l00107"></a>00107 <span class="preprocessor"></span> <a name="l00107"></a>00107 <span class="preprocessor"></span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -40,7 +40,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMXPathNSResolver.html">DOMXPathNSResolver</a></code> interface permit prefix strings in the expression to be properly bound to namespaceURI strings. <a href="classxercesc_1_1DOMXPathNSResolver.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMXPathNSResolver.html">DOMXPathNSResolver</a></code> interface permit prefix strings in the expression to be properly bound to namespaceURI strings. <a href="classxercesc_1_1DOMXPathNSResolver.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -80,7 +80,7 @@
<a name="l00108"></a>00108 XERCES_CPP_NAMESPACE_END <a name="l00108"></a>00108 XERCES_CPP_NAMESPACE_END
<a name="l00109"></a>00109 <a name="l00109"></a>00109
<a name="l00110"></a>00110 <span class="preprocessor">#endif</span> <a name="l00110"></a>00110 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -42,7 +42,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMXPathNamespace.html">DOMXPathNamespace</a></code> interface is returned by <code><a class="el" href="classxercesc_1_1DOMXPathResult.html">DOMXPathResult</a></code> interfaces to represent the XPath namespace node type that DOM lacks. <a href="classxercesc_1_1DOMXPathNamespace.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMXPathNamespace.html">DOMXPathNamespace</a></code> interface is returned by <code><a class="el" href="classxercesc_1_1DOMXPathResult.html">DOMXPathResult</a></code> interfaces to represent the XPath namespace node type that DOM lacks. <a href="classxercesc_1_1DOMXPathNamespace.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -111,7 +111,7 @@
<a name="l00252"></a>00252 XERCES_CPP_NAMESPACE_END <a name="l00252"></a>00252 XERCES_CPP_NAMESPACE_END
<a name="l00253"></a>00253 <a name="l00253"></a>00253
<a name="l00254"></a>00254 <span class="preprocessor">#endif</span> <a name="l00254"></a>00254 <span class="preprocessor">#endif</span>
</pre></div><hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; </pre></div><hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:11 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

View file

@ -39,7 +39,7 @@ This graph shows which files directly or indirectly include this file:<p><center
<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMXPathResult.html">DOMXPathResult</a></code> interface represents the result of the evaluation of an XPath 1.0 expression within the context of a particular node. <a href="classxercesc_1_1DOMXPathResult.html#_details">More...</a><br></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">The <code><a class="el" href="classxercesc_1_1DOMXPathResult.html">DOMXPathResult</a></code> interface represents the result of the evaluation of an XPath 1.0 expression within the context of a particular node. <a href="classxercesc_1_1DOMXPathResult.html#_details">More...</a><br></td></tr>
</table> </table>
<hr size="1"><address style="align: right;"><small>Generated on Tue Dec 12 00:19:01 2006 for XQilla DOM Level 3 API by&nbsp; <hr size="1"><address style="align: right;"><small>Generated on Mon Feb 12 16:52:12 2007 for XQilla DOM Level 3 API by&nbsp;
<a href="http://www.doxygen.org/index.html"> <a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6 </small></address>
</body> </body>

Some files were not shown because too many files have changed in this diff Show more