1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Xerces-C++: SAXParser Class Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.6 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li class="current"><a href="classes.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="classes.html"><span>Alphabetical List</span></a></li>
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>SAXParser Class Reference</h1><!-- doxytag: class="SAXParser" --><!-- doxytag: inherits="XMemory,Parser,XMLDocumentHandler,XMLErrorReporter,XMLEntityHandler" -->This class implements the SAX 'Parser' interface and should be used by applications wishing to parse the XML files using SAX.
<a href="#_details">More...</a>
<p>
<div class="dynheader">
Inheritance diagram for SAXParser:</div>
<div class="dynsection">
<p><center><img src="classSAXParser.png" usemap="#SAXParser_map" border="0" alt=""></center>
<map name="SAXParser_map">
<area href="classXMemory.html" alt="XMemory" shape="rect" coords="0,0,140,24">
<area href="classParser.html" alt="Parser" shape="rect" coords="150,0,290,24">
<area href="classXMLDocumentHandler.html" alt="XMLDocumentHandler" shape="rect" coords="300,0,440,24">
<area href="classXMLErrorReporter.html" alt="XMLErrorReporter" shape="rect" coords="450,0,590,24">
<area href="classXMLEntityHandler.html" alt="XMLEntityHandler" shape="rect" coords="600,0,740,24">
</map>
</div>
<p>
<a href="classSAXParser-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Public Types</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#69273edd1f4985e550a12bb1e499221e">ValSchemes</a> { <a class="el" href="classSAXParser.html#69273edd1f4985e550a12bb1e499221e5db38e99844c87fa753475a2645a1be9">Val_Never</a>,
<a class="el" href="classSAXParser.html#69273edd1f4985e550a12bb1e499221ea7e6109acdcabfb531559e92ad3e4f1e">Val_Always</a>,
<a class="el" href="classSAXParser.html#69273edd1f4985e550a12bb1e499221eb08a23615ce8b56718b3b8ece4bc9168">Val_Auto</a>
}</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">ValScheme enum used in setValidationScheme Val_Never: Do not report validation errors. <a href="classSAXParser.html#69273edd1f4985e550a12bb1e499221e">More...</a><br></td></tr>
<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
<tr><td colspan="2"><div class="groupHeader">Constructors and Destructor</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#07ca33440fd9c1e6d85fbd3f8e3d4cc8">SAXParser</a> (<a class="el" href="classXMLValidator.html">XMLValidator</a> *const valToAdopt=0, <a class="el" href="classMemoryManager.html">MemoryManager</a> *const manager=<a class="el" href="classXMLPlatformUtils.html#97eff0d9fff3567bea3acd3ca4d95252">XMLPlatformUtils::fgMemoryManager</a>, <a class="el" href="classXMLGrammarPool.html">XMLGrammarPool</a> *const gramPool=0)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Constructor with an instance of validator class to use for validation. <a href="#07ca33440fd9c1e6d85fbd3f8e3d4cc8"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#5bd00c3c9599325e8f5b5e6f9d24f8fc">~SAXParser</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#5bd00c3c9599325e8f5b5e6f9d24f8fc"></a><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Getter methods</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classDocumentHandler.html">DocumentHandler</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#5c19e19874e6d78aef1e95569d182377">getDocumentHandler</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the installed document handler. <a href="#5c19e19874e6d78aef1e95569d182377"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="classDocumentHandler.html">DocumentHandler</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#1a3185c79bd3a93fed941cb548a77e0f">getDocumentHandler</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the installed document handler. <a href="#1a3185c79bd3a93fed941cb548a77e0f"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classEntityResolver.html">EntityResolver</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#a5d7b8295c0d5ee5f25a13fed458d4e7">getEntityResolver</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the installed entity resolver. <a href="#a5d7b8295c0d5ee5f25a13fed458d4e7"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="classEntityResolver.html">EntityResolver</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#4e72809c353a83860016a9e35cc0a098">getEntityResolver</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the installed entity resolver. <a href="#4e72809c353a83860016a9e35cc0a098"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classXMLEntityResolver.html">XMLEntityResolver</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#0f56e0e25beea27307a5470b7955d55e">getXMLEntityResolver</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the installed entity resolver. <a href="#0f56e0e25beea27307a5470b7955d55e"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="classXMLEntityResolver.html">XMLEntityResolver</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#7ea691979dde005502ee233ae3b933da">getXMLEntityResolver</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the installed entity resolver. <a href="#7ea691979dde005502ee233ae3b933da"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classErrorHandler.html">ErrorHandler</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#c1fc8cf19c9011490e586a369f0b6f85">getErrorHandler</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the installed error handler. <a href="#c1fc8cf19c9011490e586a369f0b6f85"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="classErrorHandler.html">ErrorHandler</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#ecf5822cd9b382c1261a42a3edcd9194">getErrorHandler</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the installed error handler. <a href="#ecf5822cd9b382c1261a42a3edcd9194"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classPSVIHandler.html">PSVIHandler</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#da18c84c47a802ca1a720c06ab10fc47">getPSVIHandler</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the installed PSVI handler. <a href="#da18c84c47a802ca1a720c06ab10fc47"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="classPSVIHandler.html">PSVIHandler</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#437680dd0adb1f1b262e7e6e191c5fbc">getPSVIHandler</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the installed PSVI handler. <a href="#437680dd0adb1f1b262e7e6e191c5fbc"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="classXMLValidator.html">XMLValidator</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#ea7c14688f99249ae00ae018c44d88d2">getValidator</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns a reference to the parser's installed validator. <a href="#ea7c14688f99249ae00ae018c44d88d2"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classSAXParser.html#69273edd1f4985e550a12bb1e499221e">ValSchemes</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#5e6716325aded10abf4af5c48508127e">getValidationScheme</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns an enumerated value that indicates the current validation scheme set on this parser. <a href="#5e6716325aded10abf4af5c48508127e"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#2e99011fdd8d078f221056cc7a861f6b">getDoSchema</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'do schema' flag. <a href="#2e99011fdd8d078f221056cc7a861f6b"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#cb80a8287930238a1ac9f849327bb134">getValidationSchemaFullChecking</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'full schema constraint checking' flag. <a href="#cb80a8287930238a1ac9f849327bb134"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#d3bb2515b61b245069bf3bb329907f3c">getIdentityConstraintChecking</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'identity constraint checking' flag. <a href="#d3bb2515b61b245069bf3bb329907f3c"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#e00d6b0127b536e154433128fcd82443">getErrorCount</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get error count from the last parse operation. <a href="#e00d6b0127b536e154433128fcd82443"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#b78957153a98726694123d10ca0fd987">getDoNamespaces</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the state of the parser's namespace handling capability. <a href="#b78957153a98726694123d10ca0fd987"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#263f5b58a640107ca5389962abaec4e6">getExitOnFirstFatalError</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the state of the parser's exit-on-First-Fatal-Error flag. <a href="#263f5b58a640107ca5389962abaec4e6"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#a77be55be11e0d975edb969a347d6258">getValidationConstraintFatal</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns the state of the parser's validation-constraint-fatal flag. <a href="#a77be55be11e0d975edb969a347d6258"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#3e7c6ead1fb233c3af18cb77fb8e3ea0">getExternalSchemaLocation</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the set of Namespace/SchemaLocation that is specified externally. <a href="#3e7c6ead1fb233c3af18cb77fb8e3ea0"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#47da2233c10beb0ac5c9ea361feb81da">getExternalNoNamespaceSchemaLocation</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the noNamespace SchemaLocation that is specified externally. <a href="#47da2233c10beb0ac5c9ea361feb81da"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classSecurityManager.html">SecurityManager</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#39fc25b3f00389f23dd1fa85b83231e5">getSecurityManager</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the <a class="el" href="classSecurityManager.html" title="Allow application to force the parser to behave in a security-conscious way.">SecurityManager</a> instance attached to this parser. <a href="#39fc25b3f00389f23dd1fa85b83231e5"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#0a7920fab1c2daf76593ea49d907c4d7">getLowWaterMark</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the raw buffer low water mark for this parser. <a href="#0a7920fab1c2daf76593ea49d907c4d7"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#2d720b8a2c55a21a4734a6ae55b5ddb1">getLoadExternalDTD</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'Loading External DTD' flag. <a href="#2d720b8a2c55a21a4734a6ae55b5ddb1"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#2cbd8908bc00c5bacbac5593e08a5c07">getLoadSchema</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'Loading Schema' flag. <a href="#2cbd8908bc00c5bacbac5593e08a5c07"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#e4e61483b1c5e3f3fd8e625b91f1911a">isCachingGrammarFromParse</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'Grammar caching' flag. <a href="#e4e61483b1c5e3f3fd8e625b91f1911a"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#9e1f095640f5ebe875f81918a29a3cb6">isUsingCachedGrammarInParse</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'Use cached grammar' flag. <a href="#9e1f095640f5ebe875f81918a29a3cb6"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#42497dd55ad9b5707180aa5f4b974ab7">getCalculateSrcOfs</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'calculate src offset flag'. <a href="#42497dd55ad9b5707180aa5f4b974ab7"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#65dfdb53e28e2906bb205f986ef5d917">getStandardUriConformant</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'force standard uri flag'. <a href="#65dfdb53e28e2906bb205f986ef5d917"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">Grammar * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#25b2fb8df7d0f5eae8c184116a9c0f86">getGrammar</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const nameSpaceKey)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Retrieve the grammar that is associated with the specified namespace key. <a href="#25b2fb8df7d0f5eae8c184116a9c0f86"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">Grammar * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#f8e72a2c6923576dc77888e6febdaea5">getRootGrammar</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Retrieve the grammar where the root element is declared. <a href="#f8e72a2c6923576dc77888e6febdaea5"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#90d9f36173a738d487afe138f4c13099">getURIText</a> (unsigned int uriId) const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the string corresponding to a URI id from the URI string pool. <a href="#90d9f36173a738d487afe138f4c13099"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#7647261a546ac47bda863a51d24ad898">XMLFilePos</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#c24070c6b8b620a0f83edc0a3d0e5e34">getSrcOffset</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Returns the current src offset within the input source. <a href="#c24070c6b8b620a0f83edc0a3d0e5e34"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#5070cc15fe52f35887324c5157c7fcf9">getGenerateSyntheticAnnotations</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'generate synthetic annotations' flag. <a href="#5070cc15fe52f35887324c5157c7fcf9"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#3e6b27c5e568cae1579f0fa975d76bff">getValidateAnnotations</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'validate annotations' flag. <a href="#3e6b27c5e568cae1579f0fa975d76bff"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#152ceefdfe1799b4ed098a68a273a801">getIgnoreCachedDTD</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'ignore cached DTD grammar' flag. <a href="#152ceefdfe1799b4ed098a68a273a801"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#5412c5a73b1ba5aaaf52abca68dca699">getIgnoreAnnotations</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'ignore annotations' flag. <a href="#5412c5a73b1ba5aaaf52abca68dca699"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#2be75e01041f2bc218fe7f6768c413ad">getDisableDefaultEntityResolution</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'disable default entity resolution' flag. <a href="#2be75e01041f2bc218fe7f6768c413ad"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#d2b82af101cd5f0aa867dfe83f59bf3f">getSkipDTDValidation</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'skip DTD validation' flag. <a href="#d2b82af101cd5f0aa867dfe83f59bf3f"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#1822dbf413b879b19f787ede5b3e3d42">getHandleMultipleImports</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the 'handle multiple schema imports' flag. <a href="#1822dbf413b879b19f787ede5b3e3d42"></a><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Setter methods</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#91f6c93d9e6f1e3609c726cde984dda6">setGenerateSyntheticAnnotations</a> (const bool newValue)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">set the 'generate synthetic annotations' flag <a href="#91f6c93d9e6f1e3609c726cde984dda6"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#dfb8a7104418b4476ad3d173b7fde190">setValidateAnnotations</a> (const bool newValue)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">set the 'validate annotations' flag <a href="#dfb8a7104418b4476ad3d173b7fde190"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#75f6a2768c2a21b9d3ab9333efc47574">setDoNamespaces</a> (const bool newState)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows users to enable or disable the parser's namespace processing. <a href="#75f6a2768c2a21b9d3ab9333efc47574"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#7a541ef41646bf7c1e04dacbae381212">setValidationScheme</a> (const <a class="el" href="classSAXParser.html#69273edd1f4985e550a12bb1e499221e">ValSchemes</a> newScheme)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows users to set the validation scheme to be used by this parser. <a href="#7a541ef41646bf7c1e04dacbae381212"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#ff980ec30da859b31c4a47a04433603e">setDoSchema</a> (const bool newState)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the 'schema support' flag. <a href="#ff980ec30da859b31c4a47a04433603e"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#6ca8a904c391b76e193b5479268158df">setValidationSchemaFullChecking</a> (const bool schemaFullChecking)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows the user to turn full Schema constraint checking on/off. <a href="#6ca8a904c391b76e193b5479268158df"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#1b1d31b98e9367ffbe5e33ccf6ffe61e">setIdentityConstraintChecking</a> (const bool identityConstraintChecking)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows the user to turn identity constraint checking on/off. <a href="#1b1d31b98e9367ffbe5e33ccf6ffe61e"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#7a745405c8959dbd406451d4be2eade6">setExitOnFirstFatalError</a> (const bool newState)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows users to set the parser's behaviour when it encounters the first fatal error. <a href="#7a745405c8959dbd406451d4be2eade6"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#b771173ac04ee5a47dbabdc1c47b7504">setValidationConstraintFatal</a> (const bool newState)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows users to set the parser's behaviour when it encounters a validation constraint error. <a href="#b771173ac04ee5a47dbabdc1c47b7504"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#0faef3aa537903bb61fe1170f92c8c87">setExternalSchemaLocation</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const schemaLocation)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows the user to specify a list of schemas to use. <a href="#0faef3aa537903bb61fe1170f92c8c87"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#20cb69b01a1de2fb7d0bb846ff3b13f3">setExternalSchemaLocation</a> (const char *const schemaLocation)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is same as <a class="el" href="classSAXParser.html#0faef3aa537903bb61fe1170f92c8c87" title="This method allows the user to specify a list of schemas to use.">setExternalSchemaLocation(const XMLCh* const)</a>. <a href="#20cb69b01a1de2fb7d0bb846ff3b13f3"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#c49b6fba90d8abdca57ff77d439e57ee">setExternalNoNamespaceSchemaLocation</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const noNamespaceSchemaLocation)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows the user to specify the no target namespace XML Schema Location externally. <a href="#c49b6fba90d8abdca57ff77d439e57ee"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#2db1f66efece837d01ad17d9228ce50a">setExternalNoNamespaceSchemaLocation</a> (const char *const noNamespaceSchemaLocation)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is same as <a class="el" href="classSAXParser.html#c49b6fba90d8abdca57ff77d439e57ee" title="This method allows the user to specify the no target namespace XML Schema Location...">setExternalNoNamespaceSchemaLocation(const XMLCh* const)</a>. <a href="#2db1f66efece837d01ad17d9228ce50a"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#018304ee5908ab8b92cee6e6faea997f">setSecurityManager</a> (<a class="el" href="classSecurityManager.html">SecurityManager</a> *const securityManager)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This allows an application to set a <a class="el" href="classSecurityManager.html" title="Allow application to force the parser to behave in a security-conscious way.">SecurityManager</a> on the parser; this object stores information that various components use to limit their consumption of system resources while processing documents. <a href="#018304ee5908ab8b92cee6e6faea997f"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#2f40a6bbf5b5b509ea956db32f380af9">setLowWaterMark</a> (<a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> lwm)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the raw buffer low water mark for this parser. <a href="#2f40a6bbf5b5b509ea956db32f380af9"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#f6678cb7c7c3f91e193cd8b8fb3ce531">setLoadExternalDTD</a> (const bool newState)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the 'Loading External DTD' flag. <a href="#f6678cb7c7c3f91e193cd8b8fb3ce531"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#870c50ad010a8fd49cfd760f418e42b6">setLoadSchema</a> (const bool newState)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the 'Loading Schema' flag. <a href="#870c50ad010a8fd49cfd760f418e42b6"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#65b57da7a01479a0c0b4e4fcef8b1711">cacheGrammarFromParse</a> (const bool newState)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the 'Grammar caching' flag. <a href="#65b57da7a01479a0c0b4e4fcef8b1711"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#bec6695817befeae256b5b22972ef519">useCachedGrammarInParse</a> (const bool newState)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the 'Use cached grammar' flag. <a href="#bec6695817befeae256b5b22972ef519"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#46a3f71019909239fe8f82bff6b647d5">setCalculateSrcOfs</a> (const bool newState)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Enable/disable src offset calculation. <a href="#46a3f71019909239fe8f82bff6b647d5"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#ade9fc2756ae740a8d2678d0b2464354">setStandardUriConformant</a> (const bool newState)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Force standard uri. <a href="#ade9fc2756ae740a8d2678d0b2464354"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#10914a2846db3b016af451fad6d3a930">useScanner</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const scannerName)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the scanner to use when scanning the XML document. <a href="#10914a2846db3b016af451fad6d3a930"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#c9328b364a33d314878d6f2a882b2814">setInputBufferSize</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> bufferSize)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set maximum input buffer size. <a href="#c9328b364a33d314878d6f2a882b2814"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#1a5344fcde95feb3e1547b50d8a02f45">setIgnoreCachedDTD</a> (const bool newValue)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the 'ignore cached DTD grammar' flag. <a href="#1a5344fcde95feb3e1547b50d8a02f45"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#ee74573095ffa52ed01fc3ee5d84795b">setIgnoreAnnotations</a> (const bool newValue)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the 'ignore annotation' flag. <a href="#ee74573095ffa52ed01fc3ee5d84795b"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#5165b812f14bd03dca84c69bcbb0fa8a">setDisableDefaultEntityResolution</a> (const bool newValue)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the 'disable default entity resolution' flag. <a href="#5165b812f14bd03dca84c69bcbb0fa8a"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#0dc90b1a2b363f07f88926234b1bd542">setSkipDTDValidation</a> (const bool newValue)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the 'skip DTD validation' flag. <a href="#0dc90b1a2b363f07f88926234b1bd542"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#484af9ec1055ad2977193b7a7d655ae9">setHandleMultipleImports</a> (const bool newValue)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Set the 'handle multiple schema imports' flag. <a href="#484af9ec1055ad2977193b7a7d655ae9"></a><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Advanced document handler list maintenance methods</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#ac0ce2be2ab751f590766b43e37090e2">installAdvDocHandler</a> (<a class="el" href="classXMLDocumentHandler.html">XMLDocumentHandler</a> *const toInstall)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method installs the specified 'advanced' document callback handler, thereby allowing the user to customize the processing, if they choose to do so. <a href="#ac0ce2be2ab751f590766b43e37090e2"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#d51758c1d92e089571f433a26473fff9">removeAdvDocHandler</a> (<a class="el" href="classXMLDocumentHandler.html">XMLDocumentHandler</a> *const toRemove)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method removes the 'advanced' document handler callback from the underlying parser scanner. <a href="#d51758c1d92e089571f433a26473fff9"></a><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Progressive scan methods</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#bea6fa7dc10209a0adf5723d29bcde17">parseFirst</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const systemId, XMLPScanToken &toFill)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Begin a progressive parse operation. <a href="#bea6fa7dc10209a0adf5723d29bcde17"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#8137dd69476b28d9b8e4b65aa2ead418">parseFirst</a> (const char *const systemId, XMLPScanToken &toFill)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Begin a progressive parse operation. <a href="#8137dd69476b28d9b8e4b65aa2ead418"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#3fdd21ef6c90e527b176bfc74c813516">parseFirst</a> (const <a class="el" href="classInputSource.html">InputSource</a> &source, XMLPScanToken &toFill)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Begin a progressive parse operation. <a href="#3fdd21ef6c90e527b176bfc74c813516"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#ffe4109707c32808671cf2c51a6c5c54">parseNext</a> (XMLPScanToken &token)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Continue a progressive parse operation. <a href="#ffe4109707c32808671cf2c51a6c5c54"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#08f0941913da2846ad33cf8400fa1be9">parseReset</a> (XMLPScanToken &token)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Reset the parser after a progressive parse. <a href="#08f0941913da2846ad33cf8400fa1be9"></a><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Implementation of Grammar preparsing interface's.</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">Grammar * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#006f347fd82a22f76eb07685267b9502">loadGrammar</a> (const <a class="el" href="classInputSource.html">InputSource</a> &source, const Grammar::GrammarType grammarType, const bool toCache=false)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Preparse schema grammar (XML Schema, DTD, etc. <a href="#006f347fd82a22f76eb07685267b9502"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">Grammar * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#d98ab73febf742d33a0aefd63ce7479b">loadGrammar</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const systemId, const Grammar::GrammarType grammarType, const bool toCache=false)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Preparse schema grammar (XML Schema, DTD, etc. <a href="#d98ab73febf742d33a0aefd63ce7479b"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">Grammar * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#cf18f5e167d592028f05e09cd0b839f9">loadGrammar</a> (const char *const systemId, const Grammar::GrammarType grammarType, const bool toCache=false)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Preparse schema grammar (XML Schema, DTD, etc. <a href="#cf18f5e167d592028f05e09cd0b839f9"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#be78e03dea3abc99e4e7f90163b40f18">resetCachedGrammarPool</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows the user to reset the pool of cached grammars. <a href="#be78e03dea3abc99e4e7f90163b40f18"></a><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Implementation of SAX 1.0 Parser interface's.</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#d684882ed98a172675553abe68109666">parse</a> (const <a class="el" href="classInputSource.html">InputSource</a> &source)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method invokes the parsing process on the XML file specified by the <a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a> parameter. <a href="#d684882ed98a172675553abe68109666"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#4a5146bda42a0ba972a6fbd77146e828">parse</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const systemId)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method invokes the parsing process on the XML file specified by the Unicode string parameter 'systemId'. <a href="#4a5146bda42a0ba972a6fbd77146e828"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#6e928e936c15ef184fd286380e9f8c14">parse</a> (const char *const systemId)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method invokes the parsing process on the XML file specified by the native char* string parameter 'systemId'. <a href="#6e928e936c15ef184fd286380e9f8c14"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#f8593f6ca5ebb7c96d63eaea6935b1a9">setDocumentHandler</a> (<a class="el" href="classDocumentHandler.html">DocumentHandler</a> *const handler)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method installs the user specified SAX Document Handler callback function on parser. <a href="#f8593f6ca5ebb7c96d63eaea6935b1a9"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#718d0f982508496ac008a1b4f20eba06">setDTDHandler</a> (<a class="el" href="classDTDHandler.html">DTDHandler</a> *const handler)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method installs the user specified DTD handler on the parser. <a href="#718d0f982508496ac008a1b4f20eba06"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#4f473c91401970cfaed6147caaa41cbd">setErrorHandler</a> (<a class="el" href="classErrorHandler.html">ErrorHandler</a> *const handler)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method installs the user specified error handler on the parser. <a href="#4f473c91401970cfaed6147caaa41cbd"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#0f84631011701c956470800aaea6d7a3">setPSVIHandler</a> (<a class="el" href="classPSVIHandler.html">PSVIHandler</a> *const handler)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method installs the user specified PSVI handler on the parser. <a href="#0f84631011701c956470800aaea6d7a3"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#55ca3032890cc8893cfcfc15753db57b">setEntityResolver</a> (<a class="el" href="classEntityResolver.html">EntityResolver</a> *const resolver)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method installs the user specified entity resolver on the parser. <a href="#55ca3032890cc8893cfcfc15753db57b"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#eb15bc32ebbe9e3b178ae7108a1bd0c5">setXMLEntityResolver</a> (<a class="el" href="classXMLEntityResolver.html">XMLEntityResolver</a> *const resolver)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method installs the user specified entity resolver on the parser. <a href="#eb15bc32ebbe9e3b178ae7108a1bd0c5"></a><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Implementation of the XMLDocumentHandler Interface.</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#5628d4a8a0e78db902171122d38bebf7">docCharacters</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const chars, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> length, const bool cdataSection)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report all the characters scanned by the parser. <a href="#5628d4a8a0e78db902171122d38bebf7"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#e608bb669fa024fd0e77b05d16c0712f">docComment</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const comment)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report any comments scanned by the parser. <a href="#e608bb669fa024fd0e77b05d16c0712f"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#008a9ea295ae510e4b8cc3d2aa6a7a06">docPI</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const target, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const data)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report any PI scanned by the parser. <a href="#008a9ea295ae510e4b8cc3d2aa6a7a06"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#ca357ea61a0c3af9f41b7c0d2b527410">endDocument</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to indicate the end of root element was just scanned by the parser. <a href="#ca357ea61a0c3af9f41b7c0d2b527410"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#85ab9011a4fc5fa2dd1fe249a84fde7a">endElement</a> (const <a class="el" href="classXMLElementDecl.html">XMLElementDecl</a> &elemDecl, const unsigned int urlId, const bool isRoot, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const elemPrefix)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to indicate the end tag of an element. <a href="#85ab9011a4fc5fa2dd1fe249a84fde7a"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#13fe47a691ef6fac187a6f56bc9194ef">endEntityReference</a> (const <a class="el" href="classXMLEntityDecl.html">XMLEntityDecl</a> &entDecl)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to indicate that an end of an entity reference was just scanned. <a href="#13fe47a691ef6fac187a6f56bc9194ef"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#fd9f81480a86dbf8978ea233eaabda23">ignorableWhitespace</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const chars, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> length, const bool cdataSection)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report all the whitespace characters, which are determined to be 'ignorable'. <a href="#fd9f81480a86dbf8978ea233eaabda23"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#73e6cccf5be40a3fd5420a2ec5f87560">resetDocument</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows the user installed Document Handler and any advanced callback handlers to 'reset' themselves. <a href="#73e6cccf5be40a3fd5420a2ec5f87560"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#7a98e15c9e3f792c383a5c0ccf40355e">startDocument</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report the start of the parsing process. <a href="#7a98e15c9e3f792c383a5c0ccf40355e"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#2f39e6d1c052caaa56e7b8aa18f1039c">startElement</a> (const <a class="el" href="classXMLElementDecl.html">XMLElementDecl</a> &elemDecl, const unsigned int urlId, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const elemPrefix, const RefVectorOf< <a class="el" href="classXMLAttr.html">XMLAttr</a> > &attrList, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> attrCount, const bool isEmpty, const bool isRoot)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report the start of an element. <a href="#2f39e6d1c052caaa56e7b8aa18f1039c"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#9b7a5e8108844fdc07c9e89a9968f69b">startEntityReference</a> (const <a class="el" href="classXMLEntityDecl.html">XMLEntityDecl</a> &entDecl)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to indicate the start of an entity reference. <a href="#9b7a5e8108844fdc07c9e89a9968f69b"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#df4450d507d40f441732ba0fef5d90a8">XMLDecl</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const versionStr, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const encodingStr, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const standaloneStr, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const actualEncodingStr)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report the XML decl scanned by the parser. <a href="#df4450d507d40f441732ba0fef5d90a8"></a><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Implementation of the XMLErrorReporter Interface.</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#0c76a73233b61cc59a907e1f8fb5c341">error</a> (const unsigned int errCode, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const msgDomain, const <a class="el" href="classXMLErrorReporter.html#db34298ba3609a10c52328e5050d4434">XMLErrorReporter::ErrTypes</a> errType, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const errorText, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const systemId, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const publicId, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#dd2d542a6583db767febf57446daa50d">XMLFileLoc</a> lineNum, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#dd2d542a6583db767febf57446daa50d">XMLFileLoc</a> colNum)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report back errors found while parsing the XML file. <a href="#0c76a73233b61cc59a907e1f8fb5c341"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#6294c7a4c3f7174e5d2838ec69dae106">resetErrors</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows the user installed Error Handler callback to 'reset' itself. <a href="#6294c7a4c3f7174e5d2838ec69dae106"></a><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Implementation of the XMLEntityHandler Interface.</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#d075bfe6b2be4105f9dda5b1c3651e41">endInputSource</a> (const <a class="el" href="classInputSource.html">InputSource</a> &inputSource)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to indicate the end of parsing of an external entity file. <a href="#d075bfe6b2be4105f9dda5b1c3651e41"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#ca8b719e6b3b1e61def130ae58d795c8">expandSystemId</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const systemId, XMLBuffer &toFill)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows an installed <a class="el" href="classXMLEntityHandler.html" title="This abstract class is a callback mechanism for the scanner.">XMLEntityHandler</a> to further process any system id's of external entities encountered in the XML file being parsed, such as redirection etc. <a href="#ca8b719e6b3b1e61def130ae58d795c8"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#ab74b3fa5cc7a34beee6b7293a0c5819">resetEntities</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows the installed <a class="el" href="classXMLEntityHandler.html" title="This abstract class is a callback mechanism for the scanner.">XMLEntityHandler</a> to reset itself. <a href="#ab74b3fa5cc7a34beee6b7293a0c5819"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual <a class="el" href="classInputSource.html">InputSource</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#a4ed9dece6679d979f7b7458b279d0eb">resolveEntity</a> (<a class="el" href="classXMLResourceIdentifier.html">XMLResourceIdentifier</a> *resourceIdentifier)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Resolve a public/system id. <a href="#a4ed9dece6679d979f7b7458b279d0eb"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#2a942fc0cb2f4c0d06f5ed86a1dacb0b">startInputSource</a> (const <a class="el" href="classInputSource.html">InputSource</a> &inputSource)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to indicate the start of parsing an external entity file. <a href="#2a942fc0cb2f4c0d06f5ed86a1dacb0b"></a><br></td></tr>
<tr><td colspan="2"><div class="groupHeader">Implementation of the deprecated DocTypeHandler Interface</div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#234c7ee7bcfe811951e00bc459a280ca">attDef</a> (const DTDElementDecl &elemDecl, const DTDAttDef &attDef, const bool ignore)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report an attribute definition. <a href="#234c7ee7bcfe811951e00bc459a280ca"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#344e1ff54a75bd037c1c8f3a074b42a8">doctypeComment</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const comment)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report a comment occurring within the DTD. <a href="#344e1ff54a75bd037c1c8f3a074b42a8"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#d60425e05920e63ad0e8e31eb00d7340">doctypeDecl</a> (const DTDElementDecl &elemDecl, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const publicId, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const systemId, const bool hasIntSubset, const bool hasExtSubset=false)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report the DOCTYPE declaration. <a href="#d60425e05920e63ad0e8e31eb00d7340"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#81a86050c330f4668f95e34dc7e3a5b5">doctypePI</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const target, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const data)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report any PI declarations occurring inside the DTD definition block. <a href="#81a86050c330f4668f95e34dc7e3a5b5"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#22b2777f0f14c44d761f5f131149560b">doctypeWhitespace</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const chars, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> length)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report any whitespaces occurring inside the DTD definition block. <a href="#22b2777f0f14c44d761f5f131149560b"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#069d275d5be7a23aa3ccf0045bd76af2">elementDecl</a> (const DTDElementDecl &decl, const bool isIgnored)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report an element declarations successfully scanned by the parser. <a href="#069d275d5be7a23aa3ccf0045bd76af2"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#81db2fe479b7377e754ced1a04be5f38">endAttList</a> (const DTDElementDecl &elemDecl)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report the end of an attribute list declaration for an element. <a href="#81db2fe479b7377e754ced1a04be5f38"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#8840966d83ba372280fe94e3ca609d74">endIntSubset</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report the end of the internal subset. <a href="#8840966d83ba372280fe94e3ca609d74"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#64dc3fc2c45269ecc97deea47beebe95">endExtSubset</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report the end of the external subset. <a href="#64dc3fc2c45269ecc97deea47beebe95"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#f79dd7052cf481b02a0289d10bbb218c">entityDecl</a> (const DTDEntityDecl &entityDecl, const bool isPEDecl, const bool isIgnored)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report any entity declarations. <a href="#f79dd7052cf481b02a0289d10bbb218c"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#42c4888ca6a9b0db0f10ceecbcd89cad">resetDocType</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method allows the user installed DTD handler to reset itself. <a href="#42c4888ca6a9b0db0f10ceecbcd89cad"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#65c8b022c0a5722cd289de2790ec80ba">notationDecl</a> (const <a class="el" href="classXMLNotationDecl.html">XMLNotationDecl</a> &notDecl, const bool isIgnored)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report any notation declarations. <a href="#65c8b022c0a5722cd289de2790ec80ba"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#515a3ad95d129802fd0b35d05bf69351">startAttList</a> (const DTDElementDecl &elemDecl)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to indicate the start of an element's attribute list declaration. <a href="#515a3ad95d129802fd0b35d05bf69351"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#db52cf788073a3fb61a9f08c3d3e3444">startIntSubset</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used indicate the start of the internal subset. <a href="#db52cf788073a3fb61a9f08c3d3e3444"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#36a23d18017c2a43c4d3c2a2b7871b83">startExtSubset</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used indicate the start of the external subset. <a href="#36a23d18017c2a43c4d3c2a2b7871b83"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#e02e7f225e3cfe19b6cd5b17466631a4">TextDecl</a> (const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const versionStr, const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const encodingStr)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method is used to report the TextDecl. <a href="#e02e7f225e3cfe19b6cd5b17466631a4"></a><br></td></tr>
<tr><td colspan="2"><br><h2>Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const XMLScanner & </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#fca882e35007fb148ebebce061172eab">getScanner</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This method returns a reference to the underlying scanner object. <a href="#fca882e35007fb148ebebce061172eab"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">GrammarResolver * </td><td class="memItemRight" valign="bottom"><a class="el" href="classSAXParser.html#64a257c98cc32901b51053626878f515">getGrammarResolver</a> () const </td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Get the Grammar resolver. <a href="#64a257c98cc32901b51053626878f515"></a><br></td></tr>
</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
This class implements the SAX 'Parser' interface and should be used by applications wishing to parse the XML files using SAX.
<p>
It allows the client program to install SAX handlers for event callbacks.<p>
It can be used to instantiate a validating or non-validating parser, by setting a member flag.<p>
<dl compact><dt><b><a class="el" href="deprecated.html#_deprecated000001">Deprecated:</a></b></dt><dd>This interface has been replaced by the SAX2 interface, which includes Namespace support. See <a class="el" href="classSAX2XMLReader.html">SAX2XMLReader</a> for more information.</dd></dl>
Note - <a class="el" href="classXMLDocumentHandler.html" title="This abstract class provides the interface for the scanner to return XML document...">XMLDocumentHandler</a> calls, when used with <a class="el" href="classSAXParser.html" title="This class implements the SAX 'Parser' interface and should be used by applications...">SAXParser</a>, will not provide correct namespace information. This is becaue the SAX parser does not support namespace aware processing. <hr><h2>Member Enumeration Documentation</h2>
<a class="anchor" name="69273edd1f4985e550a12bb1e499221e"></a><!-- doxytag: member="SAXParser::ValSchemes" ref="69273edd1f4985e550a12bb1e499221e" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">enum <a class="el" href="classSAXParser.html#69273edd1f4985e550a12bb1e499221e">SAXParser::ValSchemes</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
ValScheme enum used in setValidationScheme Val_Never: Do not report validation errors.
<p>
Val_Always: The parser will always report validation errors. Val_Auto: The parser will report validation errors only if a grammar is specified.<p>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#7a541ef41646bf7c1e04dacbae381212" title="This method allows users to set the validation scheme to be used by this parser.">setValidationScheme</a> </dd></dl>
<dl compact><dt><b>Enumerator: </b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"><em><a class="anchor" name="69273edd1f4985e550a12bb1e499221e5db38e99844c87fa753475a2645a1be9"></a><!-- doxytag: member="Val_Never" ref="69273edd1f4985e550a12bb1e499221e5db38e99844c87fa753475a2645a1be9" args="" -->Val_Never</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="69273edd1f4985e550a12bb1e499221ea7e6109acdcabfb531559e92ad3e4f1e"></a><!-- doxytag: member="Val_Always" ref="69273edd1f4985e550a12bb1e499221ea7e6109acdcabfb531559e92ad3e4f1e" args="" -->Val_Always</em> </td><td>
</td></tr>
<tr><td valign="top"><em><a class="anchor" name="69273edd1f4985e550a12bb1e499221eb08a23615ce8b56718b3b8ece4bc9168"></a><!-- doxytag: member="Val_Auto" ref="69273edd1f4985e550a12bb1e499221eb08a23615ce8b56718b3b8ece4bc9168" args="" -->Val_Auto</em> </td><td>
</td></tr>
</table>
</dl>
</div>
</div><p>
<hr><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" name="07ca33440fd9c1e6d85fbd3f8e3d4cc8"></a><!-- doxytag: member="SAXParser::SAXParser" ref="07ca33440fd9c1e6d85fbd3f8e3d4cc8" args="(XMLValidator *const valToAdopt=0, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager, XMLGrammarPool *const gramPool=0)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">SAXParser::SAXParser </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classXMLValidator.html">XMLValidator</a> *const </td>
<td class="paramname"> <em>valToAdopt</em> = <code>0</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classMemoryManager.html">MemoryManager</a> *const </td>
<td class="paramname"> <em>manager</em> = <code><a class="el" href="classXMLPlatformUtils.html#97eff0d9fff3567bea3acd3ca4d95252">XMLPlatformUtils::fgMemoryManager</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classXMLGrammarPool.html">XMLGrammarPool</a> *const </td>
<td class="paramname"> <em>gramPool</em> = <code>0</code></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Constructor with an instance of validator class to use for validation.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>valToAdopt</em> </td><td>Pointer to the validator instance to use. The parser is responsible for freeing the memory. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>manager</em> </td><td>Pointer to the memory manager to be used to allocate objects. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>gramPool</em> </td><td>The collection of cached grammars. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="5bd00c3c9599325e8f5b5e6f9d24f8fc"></a><!-- doxytag: member="SAXParser::~SAXParser" ref="5bd00c3c9599325e8f5b5e6f9d24f8fc" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">SAXParser::~SAXParser </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Destructor.
<p>
</div>
</div><p>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="5c19e19874e6d78aef1e95569d182377"></a><!-- doxytag: member="SAXParser::getDocumentHandler" ref="5c19e19874e6d78aef1e95569d182377" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classDocumentHandler.html">DocumentHandler</a> * SAXParser::getDocumentHandler </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the installed document handler.
<p>
Suitable for 'lvalue' usages.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The pointer to the installed document handler object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="1a3185c79bd3a93fed941cb548a77e0f"></a><!-- doxytag: member="SAXParser::getDocumentHandler" ref="1a3185c79bd3a93fed941cb548a77e0f" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classDocumentHandler.html">DocumentHandler</a> * SAXParser::getDocumentHandler </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the installed document handler.
<p>
Suitable only for 'rvalue' usages.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A const pointer to the installed document handler object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="a5d7b8295c0d5ee5f25a13fed458d4e7"></a><!-- doxytag: member="SAXParser::getEntityResolver" ref="a5d7b8295c0d5ee5f25a13fed458d4e7" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classEntityResolver.html">EntityResolver</a> * SAXParser::getEntityResolver </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the installed entity resolver.
<p>
Suitable for 'lvalue' usages.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The pointer to the installed entity resolver object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="4e72809c353a83860016a9e35cc0a098"></a><!-- doxytag: member="SAXParser::getEntityResolver" ref="4e72809c353a83860016a9e35cc0a098" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classEntityResolver.html">EntityResolver</a> * SAXParser::getEntityResolver </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the installed entity resolver.
<p>
Suitable for 'rvalue' usages.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A const pointer to the installed entity resolver object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="0f56e0e25beea27307a5470b7955d55e"></a><!-- doxytag: member="SAXParser::getXMLEntityResolver" ref="0f56e0e25beea27307a5470b7955d55e" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classXMLEntityResolver.html">XMLEntityResolver</a> * SAXParser::getXMLEntityResolver </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the installed entity resolver.
<p>
Suitable for 'lvalue' usages.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The pointer to the installed entity resolver object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="7ea691979dde005502ee233ae3b933da"></a><!-- doxytag: member="SAXParser::getXMLEntityResolver" ref="7ea691979dde005502ee233ae3b933da" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classXMLEntityResolver.html">XMLEntityResolver</a> * SAXParser::getXMLEntityResolver </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the installed entity resolver.
<p>
Suitable for 'rvalue' usages.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A const pointer to the installed entity resolver object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="c1fc8cf19c9011490e586a369f0b6f85"></a><!-- doxytag: member="SAXParser::getErrorHandler" ref="c1fc8cf19c9011490e586a369f0b6f85" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classErrorHandler.html">ErrorHandler</a> * SAXParser::getErrorHandler </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the installed error handler.
<p>
Suitable for 'lvalue' usages.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The pointer to the installed error handler object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="ecf5822cd9b382c1261a42a3edcd9194"></a><!-- doxytag: member="SAXParser::getErrorHandler" ref="ecf5822cd9b382c1261a42a3edcd9194" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classErrorHandler.html">ErrorHandler</a> * SAXParser::getErrorHandler </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the installed error handler.
<p>
Suitable for 'rvalue' usages.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A const pointer to the installed error handler object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="da18c84c47a802ca1a720c06ab10fc47"></a><!-- doxytag: member="SAXParser::getPSVIHandler" ref="da18c84c47a802ca1a720c06ab10fc47" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classPSVIHandler.html">PSVIHandler</a> * SAXParser::getPSVIHandler </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the installed PSVI handler.
<p>
Suitable for 'lvalue' usages.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The pointer to the installed PSVI handler object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="437680dd0adb1f1b262e7e6e191c5fbc"></a><!-- doxytag: member="SAXParser::getPSVIHandler" ref="437680dd0adb1f1b262e7e6e191c5fbc" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classPSVIHandler.html">PSVIHandler</a> * SAXParser::getPSVIHandler </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the installed PSVI handler.
<p>
Suitable for 'rvalue' usages.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A const pointer to the installed PSVI handler object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="ea7c14688f99249ae00ae018c44d88d2"></a><!-- doxytag: member="SAXParser::getValidator" ref="ea7c14688f99249ae00ae018c44d88d2" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classXMLValidator.html">XMLValidator</a>& SAXParser::getValidator </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns a reference to the parser's installed validator.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A const reference to the installed validator object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="5e6716325aded10abf4af5c48508127e"></a><!-- doxytag: member="SAXParser::getValidationScheme" ref="5e6716325aded10abf4af5c48508127e" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSAXParser.html#69273edd1f4985e550a12bb1e499221e">ValSchemes</a> SAXParser::getValidationScheme </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns an enumerated value that indicates the current validation scheme set on this parser.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The ValSchemes value current set on this parser. </dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#7a541ef41646bf7c1e04dacbae381212" title="This method allows users to set the validation scheme to be used by this parser.">setValidationScheme</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="2e99011fdd8d078f221056cc7a861f6b"></a><!-- doxytag: member="SAXParser::getDoSchema" ref="2e99011fdd8d078f221056cc7a861f6b" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getDoSchema </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'do schema' flag.
<p>
This method returns the state of the parser's schema processing flag.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to understand schema, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#ff980ec30da859b31c4a47a04433603e" title="Set the 'schema support' flag.">setDoSchema</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="cb80a8287930238a1ac9f849327bb134"></a><!-- doxytag: member="SAXParser::getValidationSchemaFullChecking" ref="cb80a8287930238a1ac9f849327bb134" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getValidationSchemaFullChecking </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'full schema constraint checking' flag.
<p>
This method returns the state of the parser's full schema constraint checking flag.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to have full schema constraint checking, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#6ca8a904c391b76e193b5479268158df" title="This method allows the user to turn full Schema constraint checking on/off.">setValidationSchemaFullChecking</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="d3bb2515b61b245069bf3bb329907f3c"></a><!-- doxytag: member="SAXParser::getIdentityConstraintChecking" ref="d3bb2515b61b245069bf3bb329907f3c" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getIdentityConstraintChecking </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'identity constraint checking' flag.
<p>
This method returns the state of the parser's identity constraint checking flag.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to have identity constraint checking, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#1b1d31b98e9367ffbe5e33ccf6ffe61e" title="This method allows the user to turn identity constraint checking on/off.">setIdentityConstraintChecking</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="e00d6b0127b536e154433128fcd82443"></a><!-- doxytag: member="SAXParser::getErrorCount" ref="e00d6b0127b536e154433128fcd82443" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int SAXParser::getErrorCount </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get error count from the last parse operation.
<p>
This method returns the error count from the last parse operation. Note that this count is actually stored in the scanner, so this method simply returns what the scanner reports.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>number of errors encountered during the latest parse operation. </dd></dl>
</div>
</div><p>
<a class="anchor" name="b78957153a98726694123d10ca0fd987"></a><!-- doxytag: member="SAXParser::getDoNamespaces" ref="b78957153a98726694123d10ca0fd987" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getDoNamespaces </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the state of the parser's namespace handling capability.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to understand namespaces, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#75f6a2768c2a21b9d3ab9333efc47574" title="This method allows users to enable or disable the parser's namespace processing...">setDoNamespaces</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="263f5b58a640107ca5389962abaec4e6"></a><!-- doxytag: member="SAXParser::getExitOnFirstFatalError" ref="263f5b58a640107ca5389962abaec4e6" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getExitOnFirstFatalError </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the state of the parser's exit-on-First-Fatal-Error flag.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to exit on the first fatal error, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#7a745405c8959dbd406451d4be2eade6" title="This method allows users to set the parser's behaviour when it encounters the...">setExitOnFirstFatalError</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="a77be55be11e0d975edb969a347d6258"></a><!-- doxytag: member="SAXParser::getValidationConstraintFatal" ref="a77be55be11e0d975edb969a347d6258" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getValidationConstraintFatal </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns the state of the parser's validation-constraint-fatal flag.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to set validation constraint errors as fatal, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#b771173ac04ee5a47dbabdc1c47b7504" title="This method allows users to set the parser's behaviour when it encounters a validation...">setValidationConstraintFatal</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="3e7c6ead1fb233c3af18cb77fb8e3ea0"></a><!-- doxytag: member="SAXParser::getExternalSchemaLocation" ref="3e7c6ead1fb233c3af18cb77fb8e3ea0" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a>* SAXParser::getExternalSchemaLocation </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the set of Namespace/SchemaLocation that is specified externally.
<p>
This method returns the list of Namespace/SchemaLocation that was specified using setExternalSchemaLocation.<p>
The parser owns the returned string, and the memory allocated for the returned string will be destroyed when the parser is deleted.<p>
To ensure accessibility of the returned information after the parser is deleted, callers need to copy and store the returned information somewhere else.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>a pointer to the list of Namespace/SchemaLocation that was specified externally. The pointer spans the same life-time as the parser. A null pointer is returned if nothing was specified externally.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#0faef3aa537903bb61fe1170f92c8c87" title="This method allows the user to specify a list of schemas to use.">setExternalSchemaLocation(const XMLCh* const)</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="47da2233c10beb0ac5c9ea361feb81da"></a><!-- doxytag: member="SAXParser::getExternalNoNamespaceSchemaLocation" ref="47da2233c10beb0ac5c9ea361feb81da" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a>* SAXParser::getExternalNoNamespaceSchemaLocation </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the noNamespace SchemaLocation that is specified externally.
<p>
This method returns the no target namespace XML Schema Location that was specified using setExternalNoNamespaceSchemaLocation.<p>
The parser owns the returned string, and the memory allocated for the returned string will be destroyed when the parser is deleted.<p>
To ensure accessibility of the returned information after the parser is deleted, callers need to copy and store the returned information somewhere else.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>a pointer to the no target namespace Schema Location that was specified externally. The pointer spans the same life-time as the parser. A null pointer is returned if nothing was specified externally.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#c49b6fba90d8abdca57ff77d439e57ee" title="This method allows the user to specify the no target namespace XML Schema Location...">setExternalNoNamespaceSchemaLocation(const XMLCh* const)</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="39fc25b3f00389f23dd1fa85b83231e5"></a><!-- doxytag: member="SAXParser::getSecurityManager" ref="39fc25b3f00389f23dd1fa85b83231e5" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classSecurityManager.html">SecurityManager</a>* SAXParser::getSecurityManager </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the <a class="el" href="classSecurityManager.html" title="Allow application to force the parser to behave in a security-conscious way.">SecurityManager</a> instance attached to this parser.
<p>
This method returns the security manager that was specified using setSecurityManager.<p>
The <a class="el" href="classSecurityManager.html" title="Allow application to force the parser to behave in a security-conscious way.">SecurityManager</a> instance must have been specified by the application; this should not be deleted until after the parser has been deleted (or a new <a class="el" href="classSecurityManager.html" title="Allow application to force the parser to behave in a security-conscious way.">SecurityManager</a> instance has been supplied to the parser).<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>a pointer to the <a class="el" href="classSecurityManager.html" title="Allow application to force the parser to behave in a security-conscious way.">SecurityManager</a> instance specified externally. A null pointer is returned if nothing was specified externally.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#018304ee5908ab8b92cee6e6faea997f" title="This allows an application to set a SecurityManager on the parser; this object stores...">setSecurityManager(SecurityManager* const)</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="0a7920fab1c2daf76593ea49d907c4d7"></a><!-- doxytag: member="SAXParser::getLowWaterMark" ref="0a7920fab1c2daf76593ea49d907c4d7" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> SAXParser::getLowWaterMark </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the raw buffer low water mark for this parser.
<p>
If the number of available bytes in the raw buffer is less than the low water mark the parser will attempt to read more data before continuing parsing. By default the value for this parameter is 100 bytes. You may want to set this parameter to 0 if you would like the parser to parse the available data immediately without potentially blocking while waiting for more date.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>current low water mark</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#018304ee5908ab8b92cee6e6faea997f" title="This allows an application to set a SecurityManager on the parser; this object stores...">setSecurityManager</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="2d720b8a2c55a21a4734a6ae55b5ddb1"></a><!-- doxytag: member="SAXParser::getLoadExternalDTD" ref="2d720b8a2c55a21a4734a6ae55b5ddb1" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getLoadExternalDTD </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'Loading External DTD' flag.
<p>
This method returns the state of the parser's loading external DTD flag.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>false, if the parser is currently configured to ignore external DTD completely, true otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#f6678cb7c7c3f91e193cd8b8fb3ce531" title="Set the 'Loading External DTD' flag.">setLoadExternalDTD</a> <p>
<a class="el" href="classSAXParser.html#5e6716325aded10abf4af5c48508127e" title="This method returns an enumerated value that indicates the current validation scheme...">getValidationScheme</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="2cbd8908bc00c5bacbac5593e08a5c07"></a><!-- doxytag: member="SAXParser::getLoadSchema" ref="2cbd8908bc00c5bacbac5593e08a5c07" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getLoadSchema </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'Loading Schema' flag.
<p>
This method returns the state of the parser's loading schema flag.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to automatically load schemas that are not in the grammar pool, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#870c50ad010a8fd49cfd760f418e42b6" title="Set the 'Loading Schema' flag.">setLoadSchema</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="e4e61483b1c5e3f3fd8e625b91f1911a"></a><!-- doxytag: member="SAXParser::isCachingGrammarFromParse" ref="e4e61483b1c5e3f3fd8e625b91f1911a" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::isCachingGrammarFromParse </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'Grammar caching' flag.
<p>
This method returns the state of the parser's grammar caching when parsing an XML document.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to cache grammars, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#65b57da7a01479a0c0b4e4fcef8b1711" title="Set the 'Grammar caching' flag.">cacheGrammarFromParse</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="9e1f095640f5ebe875f81918a29a3cb6"></a><!-- doxytag: member="SAXParser::isUsingCachedGrammarInParse" ref="9e1f095640f5ebe875f81918a29a3cb6" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::isUsingCachedGrammarInParse </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'Use cached grammar' flag.
<p>
This method returns the state of the parser's use of cached grammar when parsing an XML document.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to use cached grammars, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#bec6695817befeae256b5b22972ef519" title="Set the 'Use cached grammar' flag.">useCachedGrammarInParse</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="42497dd55ad9b5707180aa5f4b974ab7"></a><!-- doxytag: member="SAXParser::getCalculateSrcOfs" ref="42497dd55ad9b5707180aa5f4b974ab7" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getCalculateSrcOfs </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'calculate src offset flag'.
<p>
This method returns the state of the parser's src offset calculation when parsing an XML document.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to calculate src offsets, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#46a3f71019909239fe8f82bff6b647d5" title="Enable/disable src offset calculation.">setCalculateSrcOfs</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="65dfdb53e28e2906bb205f986ef5d917"></a><!-- doxytag: member="SAXParser::getStandardUriConformant" ref="65dfdb53e28e2906bb205f986ef5d917" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getStandardUriConformant </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'force standard uri flag'.
<p>
This method returns the state if the parser forces standard uri<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to force standard uri, i.e. malformed uri will be rejected.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#ade9fc2756ae740a8d2678d0b2464354" title="Force standard uri.">setStandardUriConformant</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="25b2fb8df7d0f5eae8c184116a9c0f86"></a><!-- doxytag: member="SAXParser::getGrammar" ref="25b2fb8df7d0f5eae8c184116a9c0f86" args="(const XMLCh *const nameSpaceKey)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Grammar* SAXParser::getGrammar </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>nameSpaceKey</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Retrieve the grammar that is associated with the specified namespace key.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>nameSpaceKey</em> </td><td>Namespace key </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>Grammar associated with the Namespace key. </dd></dl>
</div>
</div><p>
<a class="anchor" name="f8e72a2c6923576dc77888e6febdaea5"></a><!-- doxytag: member="SAXParser::getRootGrammar" ref="f8e72a2c6923576dc77888e6febdaea5" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Grammar* SAXParser::getRootGrammar </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Retrieve the grammar where the root element is declared.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>Grammar where root element declared </dd></dl>
</div>
</div><p>
<a class="anchor" name="90d9f36173a738d487afe138f4c13099"></a><!-- doxytag: member="SAXParser::getURIText" ref="90d9f36173a738d487afe138f4c13099" args="(unsigned int uriId) const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a>* SAXParser::getURIText </td>
<td>(</td>
<td class="paramtype">unsigned int </td>
<td class="paramname"> <em>uriId</em> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Returns the string corresponding to a URI id from the URI string pool.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>uriId</em> </td><td>id of the string in the URI string pool. </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>URI string corresponding to the URI id. </dd></dl>
</div>
</div><p>
<a class="anchor" name="c24070c6b8b620a0f83edc0a3d0e5e34"></a><!-- doxytag: member="SAXParser::getSrcOffset" ref="c24070c6b8b620a0f83edc0a3d0e5e34" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#7647261a546ac47bda863a51d24ad898">XMLFilePos</a> SAXParser::getSrcOffset </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Returns the current src offset within the input source.
<p>
To be used only while parsing is in progress.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>offset within the input source </dd></dl>
</div>
</div><p>
<a class="anchor" name="5070cc15fe52f35887324c5157c7fcf9"></a><!-- doxytag: member="SAXParser::getGenerateSyntheticAnnotations" ref="5070cc15fe52f35887324c5157c7fcf9" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getGenerateSyntheticAnnotations </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'generate synthetic annotations' flag.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to generate synthetic annotations, false otherwise. A synthetic <a class="el" href="classXSAnnotation.html">XSAnnotation</a> is created when a schema component has non-schema attributes but has no child annotations so that the non-schema attributes can be recovered under PSVI.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#91f6c93d9e6f1e3609c726cde984dda6" title="set the 'generate synthetic annotations' flag">setGenerateSyntheticAnnotations</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="3e6b27c5e568cae1579f0fa975d76bff"></a><!-- doxytag: member="SAXParser::getValidateAnnotations" ref="3e6b27c5e568cae1579f0fa975d76bff" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getValidateAnnotations </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'validate annotations' flag.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to validate annotations, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#dfb8a7104418b4476ad3d173b7fde190" title="set the 'validate annotations' flag">setValidateAnnotations</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="152ceefdfe1799b4ed098a68a273a801"></a><!-- doxytag: member="SAXParser::getIgnoreCachedDTD" ref="152ceefdfe1799b4ed098a68a273a801" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getIgnoreCachedDTD </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'ignore cached DTD grammar' flag.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to ignore cached DTD, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#1a5344fcde95feb3e1547b50d8a02f45" title="Set the 'ignore cached DTD grammar' flag.">setIgnoreCachedDTD</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="5412c5a73b1ba5aaaf52abca68dca699"></a><!-- doxytag: member="SAXParser::getIgnoreAnnotations" ref="5412c5a73b1ba5aaaf52abca68dca699" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getIgnoreAnnotations </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'ignore annotations' flag.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to ignore annotations, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#ee74573095ffa52ed01fc3ee5d84795b" title="Set the 'ignore annotation' flag.">setIgnoreAnnotations</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="2be75e01041f2bc218fe7f6768c413ad"></a><!-- doxytag: member="SAXParser::getDisableDefaultEntityResolution" ref="2be75e01041f2bc218fe7f6768c413ad" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getDisableDefaultEntityResolution </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'disable default entity resolution' flag.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to not perform default entity resolution, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#5165b812f14bd03dca84c69bcbb0fa8a" title="Set the 'disable default entity resolution' flag.">setDisableDefaultEntityResolution</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="d2b82af101cd5f0aa867dfe83f59bf3f"></a><!-- doxytag: member="SAXParser::getSkipDTDValidation" ref="d2b82af101cd5f0aa867dfe83f59bf3f" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getSkipDTDValidation </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'skip DTD validation' flag.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to skip DTD validation, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#0dc90b1a2b363f07f88926234b1bd542" title="Set the 'skip DTD validation' flag.">setSkipDTDValidation</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="1822dbf413b879b19f787ede5b3e3d42"></a><!-- doxytag: member="SAXParser::getHandleMultipleImports" ref="1822dbf413b879b19f787ede5b3e3d42" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::getHandleMultipleImports </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the 'handle multiple schema imports' flag.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true, if the parser is currently configured to import multiple schemas with the same namespace, false otherwise.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#484af9ec1055ad2977193b7a7d655ae9" title="Set the 'handle multiple schema imports' flag.">setHandleMultipleImports</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="91f6c93d9e6f1e3609c726cde984dda6"></a><!-- doxytag: member="SAXParser::setGenerateSyntheticAnnotations" ref="91f6c93d9e6f1e3609c726cde984dda6" args="(const bool newValue)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setGenerateSyntheticAnnotations </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newValue</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
set the 'generate synthetic annotations' flag
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newValue</em> </td><td>The value for specifying whether Synthetic Annotations should be generated or not. A synthetic <a class="el" href="classXSAnnotation.html">XSAnnotation</a> is created when a schema component has non-schema attributes but has no child annotations.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#5070cc15fe52f35887324c5157c7fcf9" title="Get the 'generate synthetic annotations' flag.">getGenerateSyntheticAnnotations</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="dfb8a7104418b4476ad3d173b7fde190"></a><!-- doxytag: member="SAXParser::setValidateAnnotations" ref="dfb8a7104418b4476ad3d173b7fde190" args="(const bool newValue)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setValidateAnnotations </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newValue</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
set the 'validate annotations' flag
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newValue</em> </td><td>The value for specifying whether annotations should be validate or not.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#3e6b27c5e568cae1579f0fa975d76bff" title="Get the 'validate annotations' flag.">getValidateAnnotations</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="75f6a2768c2a21b9d3ab9333efc47574"></a><!-- doxytag: member="SAXParser::setDoNamespaces" ref="75f6a2768c2a21b9d3ab9333efc47574" args="(const bool newState)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setDoNamespaces </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newState</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows users to enable or disable the parser's namespace processing.
<p>
When set to true, parser starts enforcing all the constraints / rules specified by the NameSpace specification.<p>
The parser's default state is: false.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newState</em> </td><td>The value specifying whether NameSpace rules should be enforced or not.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#b78957153a98726694123d10ca0fd987" title="This method returns the state of the parser's namespace handling capability.">getDoNamespaces</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="7a541ef41646bf7c1e04dacbae381212"></a><!-- doxytag: member="SAXParser::setValidationScheme" ref="7a541ef41646bf7c1e04dacbae381212" args="(const ValSchemes newScheme)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setValidationScheme </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classSAXParser.html#69273edd1f4985e550a12bb1e499221e">ValSchemes</a> </td>
<td class="paramname"> <em>newScheme</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows users to set the validation scheme to be used by this parser.
<p>
The value is one of the ValSchemes enumerated values defined by this class:<p>
<br>
Val_Never - turn off validation <br>
Val_Always - turn on validation <br>
Val_Auto - turn on validation if any internal/external DTD subset have been seen<p>
The parser's default state is: Val_Never.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newScheme</em> </td><td>The new validation scheme to use.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#5e6716325aded10abf4af5c48508127e" title="This method returns an enumerated value that indicates the current validation scheme...">getValidationScheme</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="ff980ec30da859b31c4a47a04433603e"></a><!-- doxytag: member="SAXParser::setDoSchema" ref="ff980ec30da859b31c4a47a04433603e" args="(const bool newState)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setDoSchema </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newState</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the 'schema support' flag.
<p>
This method allows users to enable or disable the parser's schema processing. When set to false, parser will not process any schema found.<p>
The parser's default state is: false.<p>
Note: If set to true, namespace processing must also be turned on.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newState</em> </td><td>The value specifying whether schema support should be enforced or not.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#2e99011fdd8d078f221056cc7a861f6b" title="Get the 'do schema' flag.">getDoSchema</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="6ca8a904c391b76e193b5479268158df"></a><!-- doxytag: member="SAXParser::setValidationSchemaFullChecking" ref="6ca8a904c391b76e193b5479268158df" args="(const bool schemaFullChecking)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setValidationSchemaFullChecking </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>schemaFullChecking</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows the user to turn full Schema constraint checking on/off.
<p>
Only takes effect if Schema validation is enabled. If turned off, partial constraint checking is done.<p>
Full schema constraint checking includes those checking that may be time-consuming or memory intensive. Currently, particle unique attribution constraint checking and particle derivation restriction checking are controlled by this option.<p>
The parser's default state is: false.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>schemaFullChecking</em> </td><td>True to turn on full schema constraint checking.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#cb80a8287930238a1ac9f849327bb134" title="Get the 'full schema constraint checking' flag.">getValidationSchemaFullChecking</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="1b1d31b98e9367ffbe5e33ccf6ffe61e"></a><!-- doxytag: member="SAXParser::setIdentityConstraintChecking" ref="1b1d31b98e9367ffbe5e33ccf6ffe61e" args="(const bool identityConstraintChecking)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setIdentityConstraintChecking </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>identityConstraintChecking</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows the user to turn identity constraint checking on/off.
<p>
Only takes effect if Schema validation is enabled. If turned off, identity constraint checking is not done.<p>
The parser's default state is: true.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>identityConstraintChecking</em> </td><td>True to turn on identity constraint checking.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#d3bb2515b61b245069bf3bb329907f3c" title="Get the 'identity constraint checking' flag.">getIdentityConstraintChecking</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="7a745405c8959dbd406451d4be2eade6"></a><!-- doxytag: member="SAXParser::setExitOnFirstFatalError" ref="7a745405c8959dbd406451d4be2eade6" args="(const bool newState)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setExitOnFirstFatalError </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newState</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows users to set the parser's behaviour when it encounters the first fatal error.
<p>
If set to true, the parser will exit at the first fatal error. If false, then it will report the error and continue processing.<p>
The default value is 'true' and the parser exits on the first fatal error.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newState</em> </td><td>The value specifying whether the parser should continue or exit when it encounters the first fatal error.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#263f5b58a640107ca5389962abaec4e6" title="This method returns the state of the parser's exit-on-First-Fatal-Error flag...">getExitOnFirstFatalError</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="b771173ac04ee5a47dbabdc1c47b7504"></a><!-- doxytag: member="SAXParser::setValidationConstraintFatal" ref="b771173ac04ee5a47dbabdc1c47b7504" args="(const bool newState)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setValidationConstraintFatal </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newState</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows users to set the parser's behaviour when it encounters a validation constraint error.
<p>
If set to true, and the the parser will treat validation error as fatal and will exit depends on the state of "getExitOnFirstFatalError". If false, then it will report the error and continue processing.<p>
Note: setting this true does not mean the validation error will be printed with the word "Fatal Error". It is still printed as "Error", but the parser will exit if "setExitOnFirstFatalError" is set to true.<p>
The default value is 'false'.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newState</em> </td><td>If true, the parser will exit if "setExitOnFirstFatalError" is set to true.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#a77be55be11e0d975edb969a347d6258" title="This method returns the state of the parser's validation-constraint-fatal flag...">getValidationConstraintFatal</a> <p>
<a class="el" href="classSAXParser.html#7a745405c8959dbd406451d4be2eade6" title="This method allows users to set the parser's behaviour when it encounters the...">setExitOnFirstFatalError</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="0faef3aa537903bb61fe1170f92c8c87"></a><!-- doxytag: member="SAXParser::setExternalSchemaLocation" ref="0faef3aa537903bb61fe1170f92c8c87" args="(const XMLCh *const schemaLocation)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setExternalSchemaLocation </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>schemaLocation</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows the user to specify a list of schemas to use.
<p>
If the targetNamespace of a schema specified using this method matches the targetNamespace of a schema occurring in the instance document in the schemaLocation attribute, or if the targetNamespace matches the namespace attribute of the "import" element, the schema specified by the user using this method will be used (i.e., the schemaLocation attribute in the instance document or on the "import" element will be effectively ignored).<p>
If this method is called more than once, only the last one takes effect.<p>
The syntax is the same as for schemaLocation attributes in instance documents: e.g, "http://www.example.com file_name.xsd". The user can specify more than one XML Schema in the list.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>schemaLocation</em> </td><td>the list of schemas to use</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#3e7c6ead1fb233c3af18cb77fb8e3ea0" title="Get the set of Namespace/SchemaLocation that is specified externally.">getExternalSchemaLocation</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="20cb69b01a1de2fb7d0bb846ff3b13f3"></a><!-- doxytag: member="SAXParser::setExternalSchemaLocation" ref="20cb69b01a1de2fb7d0bb846ff3b13f3" args="(const char *const schemaLocation)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setExternalSchemaLocation </td>
<td>(</td>
<td class="paramtype">const char *const </td>
<td class="paramname"> <em>schemaLocation</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is same as <a class="el" href="classSAXParser.html#0faef3aa537903bb61fe1170f92c8c87" title="This method allows the user to specify a list of schemas to use.">setExternalSchemaLocation(const XMLCh* const)</a>.
<p>
It takes native char string as parameter<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>schemaLocation</em> </td><td>the list of schemas to use</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#0faef3aa537903bb61fe1170f92c8c87" title="This method allows the user to specify a list of schemas to use.">setExternalSchemaLocation(const XMLCh* const)</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="c49b6fba90d8abdca57ff77d439e57ee"></a><!-- doxytag: member="SAXParser::setExternalNoNamespaceSchemaLocation" ref="c49b6fba90d8abdca57ff77d439e57ee" args="(const XMLCh *const noNamespaceSchemaLocation)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setExternalNoNamespaceSchemaLocation </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>noNamespaceSchemaLocation</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows the user to specify the no target namespace XML Schema Location externally.
<p>
If specified, the instance document's noNamespaceSchemaLocation attribute will be effectively ignored.<p>
If this method is called more than once, only the last one takes effect.<p>
The syntax is the same as for the noNamespaceSchemaLocation attribute that may occur in an instance document: e.g."file_name.xsd".<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>noNamespaceSchemaLocation</em> </td><td>the XML Schema Location with no target namespace</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#47da2233c10beb0ac5c9ea361feb81da" title="Get the noNamespace SchemaLocation that is specified externally.">getExternalNoNamespaceSchemaLocation</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="2db1f66efece837d01ad17d9228ce50a"></a><!-- doxytag: member="SAXParser::setExternalNoNamespaceSchemaLocation" ref="2db1f66efece837d01ad17d9228ce50a" args="(const char *const noNamespaceSchemaLocation)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setExternalNoNamespaceSchemaLocation </td>
<td>(</td>
<td class="paramtype">const char *const </td>
<td class="paramname"> <em>noNamespaceSchemaLocation</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is same as <a class="el" href="classSAXParser.html#c49b6fba90d8abdca57ff77d439e57ee" title="This method allows the user to specify the no target namespace XML Schema Location...">setExternalNoNamespaceSchemaLocation(const XMLCh* const)</a>.
<p>
It takes native char string as parameter<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>noNamespaceSchemaLocation</em> </td><td>the XML Schema Location with no target namespace</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#c49b6fba90d8abdca57ff77d439e57ee" title="This method allows the user to specify the no target namespace XML Schema Location...">setExternalNoNamespaceSchemaLocation(const XMLCh* const)</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="018304ee5908ab8b92cee6e6faea997f"></a><!-- doxytag: member="SAXParser::setSecurityManager" ref="018304ee5908ab8b92cee6e6faea997f" args="(SecurityManager *const securityManager)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setSecurityManager </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classSecurityManager.html">SecurityManager</a> *const </td>
<td class="paramname"> <em>securityManager</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This allows an application to set a <a class="el" href="classSecurityManager.html" title="Allow application to force the parser to behave in a security-conscious way.">SecurityManager</a> on the parser; this object stores information that various components use to limit their consumption of system resources while processing documents.
<p>
If this method is called more than once, only the last one takes effect. It may not be reset during a parse.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>securityManager</em> </td><td>the <a class="el" href="classSecurityManager.html" title="Allow application to force the parser to behave in a security-conscious way.">SecurityManager</a> instance to be used by this parser</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#39fc25b3f00389f23dd1fa85b83231e5" title="Get the SecurityManager instance attached to this parser.">getSecurityManager</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="2f40a6bbf5b5b509ea956db32f380af9"></a><!-- doxytag: member="SAXParser::setLowWaterMark" ref="2f40a6bbf5b5b509ea956db32f380af9" args="(XMLSize_t lwm)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setLowWaterMark </td>
<td>(</td>
<td class="paramtype"><a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> </td>
<td class="paramname"> <em>lwm</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the raw buffer low water mark for this parser.
<p>
If the number of available bytes in the raw buffer is less than the low water mark the parser will attempt to read more data before continuing parsing. By default the value for this parameter is 100 bytes. You may want to set this parameter to 0 if you would like the parser to parse the available data immediately without potentially blocking while waiting for more date.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>lwm</em> </td><td>new low water mark</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#39fc25b3f00389f23dd1fa85b83231e5" title="Get the SecurityManager instance attached to this parser.">getSecurityManager</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="f6678cb7c7c3f91e193cd8b8fb3ce531"></a><!-- doxytag: member="SAXParser::setLoadExternalDTD" ref="f6678cb7c7c3f91e193cd8b8fb3ce531" args="(const bool newState)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setLoadExternalDTD </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newState</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the 'Loading External DTD' flag.
<p>
This method allows users to enable or disable the loading of external DTD. When set to false, the parser will ignore any external DTD completely if the validationScheme is set to Val_Never.<p>
The parser's default state is: true.<p>
This flag is ignored if the validationScheme is set to Val_Always or Val_Auto.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newState</em> </td><td>The value specifying whether external DTD should be loaded or not.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#2d720b8a2c55a21a4734a6ae55b5ddb1" title="Get the 'Loading External DTD' flag.">getLoadExternalDTD</a> <p>
<a class="el" href="classSAXParser.html#7a541ef41646bf7c1e04dacbae381212" title="This method allows users to set the validation scheme to be used by this parser.">setValidationScheme</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="870c50ad010a8fd49cfd760f418e42b6"></a><!-- doxytag: member="SAXParser::setLoadSchema" ref="870c50ad010a8fd49cfd760f418e42b6" args="(const bool newState)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setLoadSchema </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newState</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the 'Loading Schema' flag.
<p>
This method allows users to enable or disable the loading of schemas. When set to false, the parser not attempt to load schemas beyond querying the grammar pool for them.<p>
The parser's default state is: true.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newState</em> </td><td>The value specifying whether schemas should be loaded if they're not found in the grammar pool.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#2cbd8908bc00c5bacbac5593e08a5c07" title="Get the 'Loading Schema' flag.">getLoadSchema</a> <p>
<a class="el" href="classSAXParser.html#ff980ec30da859b31c4a47a04433603e" title="Set the 'schema support' flag.">setDoSchema</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="65b57da7a01479a0c0b4e4fcef8b1711"></a><!-- doxytag: member="SAXParser::cacheGrammarFromParse" ref="65b57da7a01479a0c0b4e4fcef8b1711" args="(const bool newState)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::cacheGrammarFromParse </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newState</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the 'Grammar caching' flag.
<p>
This method allows users to enable or disable caching of grammar when parsing XML documents. When set to true, the parser will cache the resulting grammar for use in subsequent parses.<p>
If the flag is set to true, the 'Use cached grammar' flag will also be set to true.<p>
The parser's default state is: false.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newState</em> </td><td>The value specifying whether we should cache grammars or not.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#e4e61483b1c5e3f3fd8e625b91f1911a" title="Get the 'Grammar caching' flag.">isCachingGrammarFromParse</a> <p>
<a class="el" href="classSAXParser.html#bec6695817befeae256b5b22972ef519" title="Set the 'Use cached grammar' flag.">useCachedGrammarInParse</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="bec6695817befeae256b5b22972ef519"></a><!-- doxytag: member="SAXParser::useCachedGrammarInParse" ref="bec6695817befeae256b5b22972ef519" args="(const bool newState)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::useCachedGrammarInParse </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newState</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the 'Use cached grammar' flag.
<p>
This method allows users to enable or disable the use of cached grammars. When set to true, the parser will use the cached grammar, instead of building the grammar from scratch, to validate XML documents.<p>
If the 'Grammar caching' flag is set to true, this method ignores the value passed in.<p>
The parser's default state is: false.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newState</em> </td><td>The value specifying whether we should use the cached grammar or not.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#9e1f095640f5ebe875f81918a29a3cb6" title="Get the 'Use cached grammar' flag.">isUsingCachedGrammarInParse</a> <p>
<a class="el" href="classSAXParser.html#65b57da7a01479a0c0b4e4fcef8b1711" title="Set the 'Grammar caching' flag.">cacheGrammarFromParse</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="46a3f71019909239fe8f82bff6b647d5"></a><!-- doxytag: member="SAXParser::setCalculateSrcOfs" ref="46a3f71019909239fe8f82bff6b647d5" args="(const bool newState)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setCalculateSrcOfs </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newState</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Enable/disable src offset calculation.
<p>
This method allows users to enable/disable src offset calculation. Disabling the calculation will improve performance.<p>
The parser's default state is: false.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newState</em> </td><td>The value specifying whether we should enable or disable src offset calculation</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#42497dd55ad9b5707180aa5f4b974ab7" title="Get the 'calculate src offset flag'.">getCalculateSrcOfs</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="ade9fc2756ae740a8d2678d0b2464354"></a><!-- doxytag: member="SAXParser::setStandardUriConformant" ref="ade9fc2756ae740a8d2678d0b2464354" args="(const bool newState)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setStandardUriConformant </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newState</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Force standard uri.
<p>
This method allows users to tell the parser to force standard uri conformance.<p>
The parser's default state is: false.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newState</em> </td><td>The value specifying whether the parser should reject malformed URI.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#65dfdb53e28e2906bb205f986ef5d917" title="Get the 'force standard uri flag'.">getStandardUriConformant</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="10914a2846db3b016af451fad6d3a930"></a><!-- doxytag: member="SAXParser::useScanner" ref="10914a2846db3b016af451fad6d3a930" args="(const XMLCh *const scannerName)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::useScanner </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>scannerName</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the scanner to use when scanning the XML document.
<p>
This method allows users to set the scanner to use when scanning a given XML document.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>scannerName</em> </td><td>The name of the desired scanner </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="c9328b364a33d314878d6f2a882b2814"></a><!-- doxytag: member="SAXParser::setInputBufferSize" ref="c9328b364a33d314878d6f2a882b2814" args="(const XMLSize_t bufferSize)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setInputBufferSize </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> </td>
<td class="paramname"> <em>bufferSize</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set maximum input buffer size.
<p>
This method allows users to limit the size of buffers used in parsing XML character data. The effect of setting this size is to limit the size of a <a class="el" href="classContentHandler.html#ed552fab959bfa7e9135691e1d21ab5a" title="Receive notification of character data.">ContentHandler::characters()</a> call.<p>
The parser's default input buffer size is 1 megabyte.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>bufferSize</em> </td><td>The maximum input buffer size </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="1a5344fcde95feb3e1547b50d8a02f45"></a><!-- doxytag: member="SAXParser::setIgnoreCachedDTD" ref="1a5344fcde95feb3e1547b50d8a02f45" args="(const bool newValue)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setIgnoreCachedDTD </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newValue</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the 'ignore cached DTD grammar' flag.
<p>
This method gives users the option to ignore a cached DTD grammar, when an XML document contains both an internal and external DTD, and the use cached grammar from parse option is enabled. Currently, we do not allow using cached DTD grammar when an internal subset is present in the document. This option will only affect the behavior of the parser when an internal and external DTD both exist in a document (i.e. no effect if document has no internal subset).<p>
The parser's default state is false<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newValue</em> </td><td>The state to set </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="ee74573095ffa52ed01fc3ee5d84795b"></a><!-- doxytag: member="SAXParser::setIgnoreAnnotations" ref="ee74573095ffa52ed01fc3ee5d84795b" args="(const bool newValue)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setIgnoreAnnotations </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newValue</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the 'ignore annotation' flag.
<p>
This method gives users the option to not generate XSAnnotations when "traversing" a schema.<p>
The parser's default state is false<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newValue</em> </td><td>The state to set </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="5165b812f14bd03dca84c69bcbb0fa8a"></a><!-- doxytag: member="SAXParser::setDisableDefaultEntityResolution" ref="5165b812f14bd03dca84c69bcbb0fa8a" args="(const bool newValue)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setDisableDefaultEntityResolution </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newValue</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the 'disable default entity resolution' flag.
<p>
This method gives users the option to not perform default entity resolution. If the user's resolveEntity method returns NULL the parser will try to resolve the entity on its own. When this option is set to true, the parser will not attempt to resolve the entity when the resolveEntity method returns NULL.<p>
The parser's default state is false<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newValue</em> </td><td>The state to set</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classEntityResolver.html" title="Basic interface for resolving entities.">EntityResolver</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="0dc90b1a2b363f07f88926234b1bd542"></a><!-- doxytag: member="SAXParser::setSkipDTDValidation" ref="0dc90b1a2b363f07f88926234b1bd542" args="(const bool newValue)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setSkipDTDValidation </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newValue</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the 'skip DTD validation' flag.
<p>
This method gives users the option to skip DTD validation only when schema validation is on (i.e. when performing validation, we will ignore the DTD, except for entities, when schema validation is enabled).<p>
NOTE: This option is ignored if schema validation is disabled.<p>
The parser's default state is false<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newValue</em> </td><td>The state to set </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="484af9ec1055ad2977193b7a7d655ae9"></a><!-- doxytag: member="SAXParser::setHandleMultipleImports" ref="484af9ec1055ad2977193b7a7d655ae9" args="(const bool newValue)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::setHandleMultipleImports </td>
<td>(</td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>newValue</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Set the 'handle multiple schema imports' flag.
<p>
This method gives users the ability to import multiple schemas that have the same namespace.<p>
NOTE: This option is ignored if schema validation is disabled.<p>
The parser's default state is false<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>newValue</em> </td><td>The state to set </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="ac0ce2be2ab751f590766b43e37090e2"></a><!-- doxytag: member="SAXParser::installAdvDocHandler" ref="ac0ce2be2ab751f590766b43e37090e2" args="(XMLDocumentHandler *const toInstall)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::installAdvDocHandler </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classXMLDocumentHandler.html">XMLDocumentHandler</a> *const </td>
<td class="paramname"> <em>toInstall</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method installs the specified 'advanced' document callback handler, thereby allowing the user to customize the processing, if they choose to do so.
<p>
Any number of advanced callback handlers maybe installed.<p>
The methods in the advanced callback interface represent Xerces-C extensions. There is no specification for this interface.<p>
Note - <a class="el" href="classXMLDocumentHandler.html" title="This abstract class provides the interface for the scanner to return XML document...">XMLDocumentHandler</a> calls, when used with <a class="el" href="classSAXParser.html" title="This class implements the SAX 'Parser' interface and should be used by applications...">SAXParser</a>, will not provide correct namespace information. This is becaue the SAX parser does not support namespace aware processing.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>toInstall</em> </td><td>A pointer to the users advanced callback handler.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#d51758c1d92e089571f433a26473fff9" title="This method removes the 'advanced' document handler callback from the underlying...">removeAdvDocHandler</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="d51758c1d92e089571f433a26473fff9"></a><!-- doxytag: member="SAXParser::removeAdvDocHandler" ref="d51758c1d92e089571f433a26473fff9" args="(XMLDocumentHandler *const toRemove)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::removeAdvDocHandler </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classXMLDocumentHandler.html">XMLDocumentHandler</a> *const </td>
<td class="paramname"> <em>toRemove</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method removes the 'advanced' document handler callback from the underlying parser scanner.
<p>
If no handler is installed, advanced callbacks are not invoked by the scanner. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>toRemove</em> </td><td>A pointer to the advanced callback handler which should be removed.</td></tr>
</table>
</dl>
Note - <a class="el" href="classXMLDocumentHandler.html" title="This abstract class provides the interface for the scanner to return XML document...">XMLDocumentHandler</a> calls, when used with <a class="el" href="classSAXParser.html" title="This class implements the SAX 'Parser' interface and should be used by applications...">SAXParser</a>, will not provide correct namespace information. This is becaue the SAX parser does not support namespace aware processing.<p>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#ac0ce2be2ab751f590766b43e37090e2" title="This method installs the specified 'advanced' document callback handler,...">installAdvDocHandler</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="bea6fa7dc10209a0adf5723d29bcde17"></a><!-- doxytag: member="SAXParser::parseFirst" ref="bea6fa7dc10209a0adf5723d29bcde17" args="(const XMLCh *const systemId, XMLPScanToken &toFill)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::parseFirst </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>systemId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">XMLPScanToken & </td>
<td class="paramname"> <em>toFill</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Begin a progressive parse operation.
<p>
This method is used to start a progressive parse on a XML file. To continue parsing, subsequent calls must be to the parseNext method.<p>
It scans through the prolog and returns a token to be used on subsequent scanNext() calls. If the return value is true, then the token is legal and ready for further use. If it returns false, then the scan of the prolog failed and the token is not going to work on subsequent scanNext() calls.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>systemId</em> </td><td>A pointer to a Unicode string representing the path to the XML file to be parsed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>toFill</em> </td><td>A token maintaing state information to maintain internal consistency between invocation of 'parseNext' calls.</td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>'true', if successful in parsing the prolog. It indicates the user can go ahead with parsing the rest of the file. It returns 'false' to indicate that the parser could parse the prolog (which means the token will not be valid.)</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#ffe4109707c32808671cf2c51a6c5c54" title="Continue a progressive parse operation.">parseNext</a> <p>
<a class="el" href="classSAXParser.html#bea6fa7dc10209a0adf5723d29bcde17" title="Begin a progressive parse operation.">parseFirst</a>(char*,...) <p>
<a class="el" href="classSAXParser.html#bea6fa7dc10209a0adf5723d29bcde17" title="Begin a progressive parse operation.">parseFirst</a>(<a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a>&,...) </dd></dl>
</div>
</div><p>
<a class="anchor" name="8137dd69476b28d9b8e4b65aa2ead418"></a><!-- doxytag: member="SAXParser::parseFirst" ref="8137dd69476b28d9b8e4b65aa2ead418" args="(const char *const systemId, XMLPScanToken &toFill)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::parseFirst </td>
<td>(</td>
<td class="paramtype">const char *const </td>
<td class="paramname"> <em>systemId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">XMLPScanToken & </td>
<td class="paramname"> <em>toFill</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Begin a progressive parse operation.
<p>
This method is used to start a progressive parse on a XML file. To continue parsing, subsequent calls must be to the parseNext method.<p>
It scans through the prolog and returns a token to be used on subsequent scanNext() calls. If the return value is true, then the token is legal and ready for further use. If it returns false, then the scan of the prolog failed and the token is not going to work on subsequent scanNext() calls.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>systemId</em> </td><td>A pointer to a regular native string representing the path to the XML file to be parsed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>toFill</em> </td><td>A token maintaing state information to maintain internal consistency between invocation of 'parseNext' calls.</td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>'true', if successful in parsing the prolog. It indicates the user can go ahead with parsing the rest of the file. It returns 'false' to indicate that the parser could not parse the prolog.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#ffe4109707c32808671cf2c51a6c5c54" title="Continue a progressive parse operation.">parseNext</a> <p>
<a class="el" href="classSAXParser.html#bea6fa7dc10209a0adf5723d29bcde17" title="Begin a progressive parse operation.">parseFirst</a>(XMLCh*,...) <p>
<a class="el" href="classSAXParser.html#bea6fa7dc10209a0adf5723d29bcde17" title="Begin a progressive parse operation.">parseFirst</a>(<a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a>&,...) </dd></dl>
</div>
</div><p>
<a class="anchor" name="3fdd21ef6c90e527b176bfc74c813516"></a><!-- doxytag: member="SAXParser::parseFirst" ref="3fdd21ef6c90e527b176bfc74c813516" args="(const InputSource &source, XMLPScanToken &toFill)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::parseFirst </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classInputSource.html">InputSource</a> & </td>
<td class="paramname"> <em>source</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">XMLPScanToken & </td>
<td class="paramname"> <em>toFill</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Begin a progressive parse operation.
<p>
This method is used to start a progressive parse on a XML file. To continue parsing, subsequent calls must be to the parseNext method.<p>
It scans through the prolog and returns a token to be used on subsequent scanNext() calls. If the return value is true, then the token is legal and ready for further use. If it returns false, then the scan of the prolog failed and the token is not going to work on subsequent scanNext() calls.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>source</em> </td><td>A const reference to the <a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a> object which points to the XML file to be parsed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>toFill</em> </td><td>A token maintaing state information to maintain internal consistency between invocation of 'parseNext' calls.</td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>'true', if successful in parsing the prolog. It indicates the user can go ahead with parsing the rest of the file. It returns 'false' to indicate that the parser could not parse the prolog.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#ffe4109707c32808671cf2c51a6c5c54" title="Continue a progressive parse operation.">parseNext</a> <p>
<a class="el" href="classSAXParser.html#bea6fa7dc10209a0adf5723d29bcde17" title="Begin a progressive parse operation.">parseFirst</a>(XMLCh*,...) <p>
<a class="el" href="classSAXParser.html#bea6fa7dc10209a0adf5723d29bcde17" title="Begin a progressive parse operation.">parseFirst</a>(char*,...) </dd></dl>
</div>
</div><p>
<a class="anchor" name="ffe4109707c32808671cf2c51a6c5c54"></a><!-- doxytag: member="SAXParser::parseNext" ref="ffe4109707c32808671cf2c51a6c5c54" args="(XMLPScanToken &token)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool SAXParser::parseNext </td>
<td>(</td>
<td class="paramtype">XMLPScanToken & </td>
<td class="paramname"> <em>token</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Continue a progressive parse operation.
<p>
This method is used to continue with progressive parsing of XML files started by a call to 'parseFirst' method.<p>
It parses the XML file and stops as soon as it comes across a XML token (as defined in the XML specification). Relevant callback handlers are invoked as required by the SAX specification.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>token</em> </td><td>A token maintaing state information to maintain internal consistency between invocation of 'parseNext' calls.</td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>'true', if successful in parsing the next XML token. It indicates the user can go ahead with parsing the rest of the file. It returns 'false' to indicate that the parser could not find next token as per the XML specification production rule.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classSAXParser.html#bea6fa7dc10209a0adf5723d29bcde17" title="Begin a progressive parse operation.">parseFirst</a>(XMLCh*,...) <p>
<a class="el" href="classSAXParser.html#bea6fa7dc10209a0adf5723d29bcde17" title="Begin a progressive parse operation.">parseFirst</a>(char*,...) <p>
<a class="el" href="classSAXParser.html#bea6fa7dc10209a0adf5723d29bcde17" title="Begin a progressive parse operation.">parseFirst</a>(<a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a>&,...) </dd></dl>
</div>
</div><p>
<a class="anchor" name="08f0941913da2846ad33cf8400fa1be9"></a><!-- doxytag: member="SAXParser::parseReset" ref="08f0941913da2846ad33cf8400fa1be9" args="(XMLPScanToken &token)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::parseReset </td>
<td>(</td>
<td class="paramtype">XMLPScanToken & </td>
<td class="paramname"> <em>token</em> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Reset the parser after a progressive parse.
<p>
If a progressive parse loop exits before the end of the document is reached, the parser has no way of knowing this. So it will leave open any files or sockets or memory buffers that were in use at the time that the parse loop exited.<p>
The next parse operation will cause these open files and such to be closed, but the next parse operation might occur at some unknown future point. To avoid this problem, you should reset the parser if you exit the loop early.<p>
If you exited because of an error, then this cleanup will be done for you. Its only when you exit the file prematurely of your own accord, because you've found what you wanted in the file most likely.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>token</em> </td><td>A token maintaing state information to maintain internal consistency between invocation of 'parseNext' calls. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="006f347fd82a22f76eb07685267b9502"></a><!-- doxytag: member="SAXParser::loadGrammar" ref="006f347fd82a22f76eb07685267b9502" args="(const InputSource &source, const Grammar::GrammarType grammarType, const bool toCache=false)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Grammar* SAXParser::loadGrammar </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classInputSource.html">InputSource</a> & </td>
<td class="paramname"> <em>source</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const Grammar::GrammarType </td>
<td class="paramname"> <em>grammarType</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>toCache</em> = <code>false</code></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Preparse schema grammar (XML Schema, DTD, etc.
<p>
) via an input source object.<p>
This method invokes the preparsing process on a schema grammar XML file specified by the SAX <a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a> parameter. If the 'toCache' flag is enabled, the parser will cache the grammars for re-use. If a grammar key is found in the pool, no caching of any grammar will take place.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>source</em> </td><td>A const reference to the SAX <a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a> object which points to the schema grammar file to be preparsed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>grammarType</em> </td><td>The grammar type (Schema or DTD). </td></tr>
<tr><td valign="top"></td><td valign="top"><em>toCache</em> </td><td>If <code>true</code>, we cache the preparsed grammar, otherwise, no caching. Default is <code>false</code>. </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The preparsed schema grammar object (SchemaGrammar or DTDGrammar). That grammar object is owned by the parser.</dd></dl>
<dl compact><dt><b>Exceptions:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em><a class="el" href="classSAXException.html" title="Encapsulate a general SAX error or warning.">SAXException</a></em> </td><td>Any SAX exception, possibly wrapping another exception. </td></tr>
<tr><td valign="top"></td><td valign="top"><em><a class="el" href="classXMLException.html">XMLException</a></em> </td><td>An exception from the parser or client handler code. </td></tr>
<tr><td valign="top"></td><td valign="top"><em><a class="el" href="classDOMException.html">DOMException</a></em> </td><td>A DOM exception as per DOM spec.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classInputSource.html#601a7aa7124e2d8e9664eda9aea6b622" title="Default constructor.">InputSource::InputSource</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="d98ab73febf742d33a0aefd63ce7479b"></a><!-- doxytag: member="SAXParser::loadGrammar" ref="d98ab73febf742d33a0aefd63ce7479b" args="(const XMLCh *const systemId, const Grammar::GrammarType grammarType, const bool toCache=false)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Grammar* SAXParser::loadGrammar </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>systemId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const Grammar::GrammarType </td>
<td class="paramname"> <em>grammarType</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>toCache</em> = <code>false</code></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Preparse schema grammar (XML Schema, DTD, etc.
<p>
) via a file path or URL<p>
This method invokes the preparsing process on a schema grammar XML file specified by the file path parameter. If the 'toCache' flag is enabled, the parser will cache the grammars for re-use. If a grammar key is found in the pool, no caching of any grammar will take place.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>systemId</em> </td><td>A const XMLCh pointer to the Unicode string which contains the path to the XML grammar file to be preparsed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>grammarType</em> </td><td>The grammar type (Schema or DTD). </td></tr>
<tr><td valign="top"></td><td valign="top"><em>toCache</em> </td><td>If <code>true</code>, we cache the preparsed grammar, otherwise, no caching. Default is <code>false</code>. </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The preparsed schema grammar object (SchemaGrammar or DTDGrammar). That grammar object is owned by the parser.</dd></dl>
<dl compact><dt><b>Exceptions:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em><a class="el" href="classSAXException.html" title="Encapsulate a general SAX error or warning.">SAXException</a></em> </td><td>Any SAX exception, possibly wrapping another exception. </td></tr>
<tr><td valign="top"></td><td valign="top"><em><a class="el" href="classXMLException.html">XMLException</a></em> </td><td>An exception from the parser or client handler code. </td></tr>
<tr><td valign="top"></td><td valign="top"><em><a class="el" href="classDOMException.html">DOMException</a></em> </td><td>A DOM exception as per DOM spec. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="cf18f5e167d592028f05e09cd0b839f9"></a><!-- doxytag: member="SAXParser::loadGrammar" ref="cf18f5e167d592028f05e09cd0b839f9" args="(const char *const systemId, const Grammar::GrammarType grammarType, const bool toCache=false)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Grammar* SAXParser::loadGrammar </td>
<td>(</td>
<td class="paramtype">const char *const </td>
<td class="paramname"> <em>systemId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const Grammar::GrammarType </td>
<td class="paramname"> <em>grammarType</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>toCache</em> = <code>false</code></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Preparse schema grammar (XML Schema, DTD, etc.
<p>
) via a file path or URL<p>
This method invokes the preparsing process on a schema grammar XML file specified by the file path parameter. If the 'toCache' flag is enabled, the parser will cache the grammars for re-use. If a grammar key is found in the pool, no caching of any grammar will take place.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>systemId</em> </td><td>A const char pointer to a native string which contains the path to the XML grammar file to be preparsed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>grammarType</em> </td><td>The grammar type (Schema or DTD). </td></tr>
<tr><td valign="top"></td><td valign="top"><em>toCache</em> </td><td>If <code>true</code>, we cache the preparsed grammar, otherwise, no caching. Default is <code>false</code>. </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The preparsed schema grammar object (SchemaGrammar or DTDGrammar). That grammar object is owned by the parser.</dd></dl>
<dl compact><dt><b>Exceptions:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em><a class="el" href="classSAXException.html" title="Encapsulate a general SAX error or warning.">SAXException</a></em> </td><td>Any SAX exception, possibly wrapping another exception. </td></tr>
<tr><td valign="top"></td><td valign="top"><em><a class="el" href="classXMLException.html">XMLException</a></em> </td><td>An exception from the parser or client handler code. </td></tr>
<tr><td valign="top"></td><td valign="top"><em><a class="el" href="classDOMException.html">DOMException</a></em> </td><td>A DOM exception as per DOM spec. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="be78e03dea3abc99e4e7f90163b40f18"></a><!-- doxytag: member="SAXParser::resetCachedGrammarPool" ref="be78e03dea3abc99e4e7f90163b40f18" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void SAXParser::resetCachedGrammarPool </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows the user to reset the pool of cached grammars.
<p>
</div>
</div><p>
<a class="anchor" name="d684882ed98a172675553abe68109666"></a><!-- doxytag: member="SAXParser::parse" ref="d684882ed98a172675553abe68109666" args="(const InputSource &source)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::parse </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classInputSource.html">InputSource</a> & </td>
<td class="paramname"> <em>source</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method invokes the parsing process on the XML file specified by the <a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a> parameter.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>source</em> </td><td>A const reference to the <a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a> object which points to the XML file to be parsed.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd>Parser::parse(InputSource) </dd></dl>
<p>Implements <a class="el" href="classParser.html#624fc687a49b917c11ef632367568b60">Parser</a>.</p>
</div>
</div><p>
<a class="anchor" name="4a5146bda42a0ba972a6fbd77146e828"></a><!-- doxytag: member="SAXParser::parse" ref="4a5146bda42a0ba972a6fbd77146e828" args="(const XMLCh *const systemId)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::parse </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>systemId</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method invokes the parsing process on the XML file specified by the Unicode string parameter 'systemId'.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>systemId</em> </td><td>A const XMLCh pointer to the Unicode string which contains the path to the XML file to be parsed.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd>Parser::parse(XMLCh*) </dd></dl>
<p>Implements <a class="el" href="classParser.html#37d4db3b3e88307b0aad780a685d76fd">Parser</a>.</p>
</div>
</div><p>
<a class="anchor" name="6e928e936c15ef184fd286380e9f8c14"></a><!-- doxytag: member="SAXParser::parse" ref="6e928e936c15ef184fd286380e9f8c14" args="(const char *const systemId)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::parse </td>
<td>(</td>
<td class="paramtype">const char *const </td>
<td class="paramname"> <em>systemId</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method invokes the parsing process on the XML file specified by the native char* string parameter 'systemId'.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>systemId</em> </td><td>A const char pointer to a native string which contains the path to the XML file to be parsed. </td></tr>
</table>
</dl>
<p>Implements <a class="el" href="classParser.html#802e068db2ca0b11d8f6365d8a3267c6">Parser</a>.</p>
</div>
</div><p>
<a class="anchor" name="f8593f6ca5ebb7c96d63eaea6935b1a9"></a><!-- doxytag: member="SAXParser::setDocumentHandler" ref="f8593f6ca5ebb7c96d63eaea6935b1a9" args="(DocumentHandler *const handler)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::setDocumentHandler </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classDocumentHandler.html">DocumentHandler</a> *const </td>
<td class="paramname"> <em>handler</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method installs the user specified SAX Document Handler callback function on parser.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>handler</em> </td><td>A pointer to the document handler to be called when the parser comes across 'document' events as per the SAX specification.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd>Parser::parse(char*) </dd></dl>
<p>Implements <a class="el" href="classParser.html#2038c09146fff3b0ec66143630736bdb">Parser</a>.</p>
</div>
</div><p>
<a class="anchor" name="718d0f982508496ac008a1b4f20eba06"></a><!-- doxytag: member="SAXParser::setDTDHandler" ref="718d0f982508496ac008a1b4f20eba06" args="(DTDHandler *const handler)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::setDTDHandler </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classDTDHandler.html">DTDHandler</a> *const </td>
<td class="paramname"> <em>handler</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method installs the user specified DTD handler on the parser.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>handler</em> </td><td>A pointer to the DTD handler to be called when the parser comes across 'DTD' events as per the SAX specification.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classParser.html#d97184f9e4397e360903e2fdb72d23bf" title="Allow an application to register a DTD event handler.">Parser::setDTDHandler</a> </dd></dl>
<p>Implements <a class="el" href="classParser.html#d97184f9e4397e360903e2fdb72d23bf">Parser</a>.</p>
</div>
</div><p>
<a class="anchor" name="4f473c91401970cfaed6147caaa41cbd"></a><!-- doxytag: member="SAXParser::setErrorHandler" ref="4f473c91401970cfaed6147caaa41cbd" args="(ErrorHandler *const handler)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::setErrorHandler </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classErrorHandler.html">ErrorHandler</a> *const </td>
<td class="paramname"> <em>handler</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method installs the user specified error handler on the parser.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>handler</em> </td><td>A pointer to the error handler to be called when the parser comes across 'error' events as per the SAX specification.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classParser.html#acd0f62732e363faeb4e5ee5b0a6e12a" title="Allow an application to register an error event handler.">Parser::setErrorHandler</a> </dd></dl>
<p>Implements <a class="el" href="classParser.html#acd0f62732e363faeb4e5ee5b0a6e12a">Parser</a>.</p>
</div>
</div><p>
<a class="anchor" name="0f84631011701c956470800aaea6d7a3"></a><!-- doxytag: member="SAXParser::setPSVIHandler" ref="0f84631011701c956470800aaea6d7a3" args="(PSVIHandler *const handler)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::setPSVIHandler </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classPSVIHandler.html">PSVIHandler</a> *const </td>
<td class="paramname"> <em>handler</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method installs the user specified PSVI handler on the parser.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>handler</em> </td><td>A pointer to the PSVI handler to be called when the parser comes across 'PSVI' events as per the schema specification.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd>Parser::setPSVIHandler </dd></dl>
</div>
</div><p>
<a class="anchor" name="55ca3032890cc8893cfcfc15753db57b"></a><!-- doxytag: member="SAXParser::setEntityResolver" ref="55ca3032890cc8893cfcfc15753db57b" args="(EntityResolver *const resolver)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::setEntityResolver </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classEntityResolver.html">EntityResolver</a> *const </td>
<td class="paramname"> <em>resolver</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method installs the user specified entity resolver on the parser.
<p>
It allows applications to trap and redirect calls to external entities.<p>
<em>Any previously set entity resolver is merely dropped, since the parser does not own them. If both setEntityResolver and setXMLEntityResolver are called, then the last one is used.</em><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>resolver</em> </td><td>A pointer to the entity resolver to be called when the parser comes across references to entities in the XML file.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classParser.html#62435895e0615380f3017090ac232594" title="Allow an application to register a custom entity resolver.">Parser::setEntityResolver</a> </dd></dl>
<p>Implements <a class="el" href="classParser.html#62435895e0615380f3017090ac232594">Parser</a>.</p>
</div>
</div><p>
<a class="anchor" name="eb15bc32ebbe9e3b178ae7108a1bd0c5"></a><!-- doxytag: member="SAXParser::setXMLEntityResolver" ref="eb15bc32ebbe9e3b178ae7108a1bd0c5" args="(XMLEntityResolver *const resolver)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::setXMLEntityResolver </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classXMLEntityResolver.html">XMLEntityResolver</a> *const </td>
<td class="paramname"> <em>resolver</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method installs the user specified entity resolver on the parser.
<p>
It allows applications to trap and redirect calls to external entities.<p>
<em>Any previously set entity resolver is merely dropped, since the parser does not own them. If both setEntityResolver and setXMLEntityResolver are called, then the last one is used.</em><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>resolver</em> </td><td>A pointer to the entity resolver to be called when the parser comes across references to entities in the XML file.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd>Parser::setXMLEntityResolver </dd></dl>
</div>
</div><p>
<a class="anchor" name="5628d4a8a0e78db902171122d38bebf7"></a><!-- doxytag: member="SAXParser::docCharacters" ref="5628d4a8a0e78db902171122d38bebf7" args="(const XMLCh *const chars, const XMLSize_t length, const bool cdataSection)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::docCharacters </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>chars</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> </td>
<td class="paramname"> <em>length</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>cdataSection</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report all the characters scanned by the parser.
<p>
The driver will invoke the 'characters' method of the user installed SAX Document Handler.<p>
If any advanced callback handlers are installed, the corresponding 'docCharacters' method will also be invoked.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>chars</em> </td><td>A const pointer to a Unicode string representing the character data. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>length</em> </td><td>The length of the Unicode string returned in 'chars'. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>cdataSection</em> </td><td>A flag indicating if the characters represent content from the CDATA section. </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classDocumentHandler.html#11b895cf26b39d894529830cd988b579" title="Receive notification of character data.">DocumentHandler::characters</a> </dd></dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#c34cbdd96ce8794530dfea35f2c2e93a">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="e608bb669fa024fd0e77b05d16c0712f"></a><!-- doxytag: member="SAXParser::docComment" ref="e608bb669fa024fd0e77b05d16c0712f" args="(const XMLCh *const comment)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::docComment </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>comment</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report any comments scanned by the parser.
<p>
This method is a no-op unless, unless an advanced callback handler is installed, in which case the corresponding 'docComment' method is invoked.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>comment</em> </td><td>A const pointer to a null terminated Unicode string representing the comment text. </td></tr>
</table>
</dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#797efd9c442d68cce9ff3c33709f3205">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="008a9ea295ae510e4b8cc3d2aa6a7a06"></a><!-- doxytag: member="SAXParser::docPI" ref="008a9ea295ae510e4b8cc3d2aa6a7a06" args="(const XMLCh *const target, const XMLCh *const data)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::docPI </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>target</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>data</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report any PI scanned by the parser.
<p>
Any PI's occurring before any 'content' are not reported to any SAX handler as per the specification. However, all PI's within content are reported via the SAX Document Handler's 'processingInstruction' method.<p>
If any advanced callback handlers are installed, the corresponding 'docPI' method will be invoked.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>target</em> </td><td>A const pointer to a Unicode string representing the target of the PI declaration. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>data</em> </td><td>A const pointer to a Unicode string representing the data of the PI declaration. See the PI production rule in the XML specification for details.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classDocumentHandler.html#546c9915fbb6e926b7313c05772ca17c" title="Receive notification of a processing instruction.">DocumentHandler::processingInstruction</a> </dd></dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#fe1ef8ce4db872d933e06bc338a0914f">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="ca357ea61a0c3af9f41b7c0d2b527410"></a><!-- doxytag: member="SAXParser::endDocument" ref="ca357ea61a0c3af9f41b7c0d2b527410" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::endDocument </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to indicate the end of root element was just scanned by the parser.
<p>
Corresponding 'endDocument' method of the user installed SAX Document Handler will also be invoked.<p>
In addition, if any advanced callback handlers are installed, the corresponding 'endDocument' method is invoked.<p>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classDocumentHandler.html#87e8fefd7fa90cbbd629ce45aa82c736" title="Receive notification of the end of a document.">DocumentHandler::endDocument</a> </dd></dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#6e18eebd0193230974b4b8d66afd9932">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="85ab9011a4fc5fa2dd1fe249a84fde7a"></a><!-- doxytag: member="SAXParser::endElement" ref="85ab9011a4fc5fa2dd1fe249a84fde7a" args="(const XMLElementDecl &elemDecl, const unsigned int urlId, const bool isRoot, const XMLCh *const elemPrefix)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::endElement </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classXMLElementDecl.html">XMLElementDecl</a> & </td>
<td class="paramname"> <em>elemDecl</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const unsigned int </td>
<td class="paramname"> <em>urlId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>isRoot</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>elemPrefix</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to indicate the end tag of an element.
<p>
The driver will invoke the corresponding 'endElement' method of the SAX Document Handler interface.<p>
If any advanced callback handlers are installed, the corresponding 'endElement' method is also invoked.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>elemDecl</em> </td><td>A const reference to the object containing element declaration information. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>urlId</em> </td><td>An id referring to the namespace prefix, if namespaces setting is switched on. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>isRoot</em> </td><td>A flag indicating whether this element was the root element. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>elemPrefix</em> </td><td>A const pointer to a Unicode string containing the namespace prefix for this element. Applicable only when namespace processing is enabled. </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classDocumentHandler.html#d3b6e82b8d674030b0b9b34173524af3" title="Receive notification of the end of an element.">DocumentHandler::endElement</a> </dd></dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#3f0fa424c89fdfeeefbc112ac66f2976">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="13fe47a691ef6fac187a6f56bc9194ef"></a><!-- doxytag: member="SAXParser::endEntityReference" ref="13fe47a691ef6fac187a6f56bc9194ef" args="(const XMLEntityDecl &entDecl)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::endEntityReference </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classXMLEntityDecl.html">XMLEntityDecl</a> & </td>
<td class="paramname"> <em>entDecl</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to indicate that an end of an entity reference was just scanned.
<p>
If any advanced callback handlers are installed, the corresponding 'endEntityReference' method is invoked.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>entDecl</em> </td><td>A const reference to the object containing the entity declaration information. </td></tr>
</table>
</dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#14b27af49a415848ea7e4f544622e8cc">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="fd9f81480a86dbf8978ea233eaabda23"></a><!-- doxytag: member="SAXParser::ignorableWhitespace" ref="fd9f81480a86dbf8978ea233eaabda23" args="(const XMLCh *const chars, const XMLSize_t length, const bool cdataSection)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::ignorableWhitespace </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>chars</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> </td>
<td class="paramname"> <em>length</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>cdataSection</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report all the whitespace characters, which are determined to be 'ignorable'.
<p>
This distinction between characters is only made, if validation is enabled. Corresponding 'ignorableWhitespace' method of the user installed SAX Document Handler interface is called.<p>
Any whitespace before content is not reported to the SAX Document Handler method, as per the SAX specification. However, if any advanced callback handlers are installed, the corresponding 'ignorableWhitespace' method is invoked.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>chars</em> </td><td>A const pointer to a Unicode string representing the ignorable whitespace character data. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>length</em> </td><td>The length of the Unicode string 'chars'. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>cdataSection</em> </td><td>A flag indicating if the characters represent content from the CDATA section. </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classDocumentHandler.html#f2732a86367efbc82c8ebaec1f041276" title="Receive notification of ignorable whitespace in element content.">DocumentHandler::ignorableWhitespace</a> </dd></dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#99f455a919934c3e093709d1bfc14d3d">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="73e6cccf5be40a3fd5420a2ec5f87560"></a><!-- doxytag: member="SAXParser::resetDocument" ref="73e6cccf5be40a3fd5420a2ec5f87560" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::resetDocument </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows the user installed Document Handler and any advanced callback handlers to 'reset' themselves.
<p>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#549b9b77f35e2c7cb4c1722d034841bf">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="7a98e15c9e3f792c383a5c0ccf40355e"></a><!-- doxytag: member="SAXParser::startDocument" ref="7a98e15c9e3f792c383a5c0ccf40355e" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::startDocument </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report the start of the parsing process.
<p>
The corresponding user installed SAX Document Handler's method 'startDocument' is invoked.<p>
If any advanced callback handlers are installed, then the corresponding 'startDocument' method is also called.<p>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classDocumentHandler.html#286dec815391a19130674d4f389f5db4" title="Receive notification of the beginning of a document.">DocumentHandler::startDocument</a> </dd></dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#8b9e5f68340f083cd0eb69cc85692084">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="2f39e6d1c052caaa56e7b8aa18f1039c"></a><!-- doxytag: member="SAXParser::startElement" ref="2f39e6d1c052caaa56e7b8aa18f1039c" args="(const XMLElementDecl &elemDecl, const unsigned int urlId, const XMLCh *const elemPrefix, const RefVectorOf< XMLAttr > &attrList, const XMLSize_t attrCount, const bool isEmpty, const bool isRoot)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::startElement </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classXMLElementDecl.html">XMLElementDecl</a> & </td>
<td class="paramname"> <em>elemDecl</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const unsigned int </td>
<td class="paramname"> <em>urlId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>elemPrefix</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const RefVectorOf< <a class="el" href="classXMLAttr.html">XMLAttr</a> > & </td>
<td class="paramname"> <em>attrList</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> </td>
<td class="paramname"> <em>attrCount</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>isEmpty</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>isRoot</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report the start of an element.
<p>
It is called at the end of the element, by which time all attributes specified are also parsed. The corresponding user installed SAX Document Handler's method 'startElement' is invoked.<p>
If any advanced callback handlers are installed, then the corresponding 'startElement' method is also called.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>elemDecl</em> </td><td>A const reference to the object containing element declaration information. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>urlId</em> </td><td>An id referring to the namespace prefix, if namespaces setting is switched on. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>elemPrefix</em> </td><td>A const pointer to a Unicode string containing the namespace prefix for this element. Applicable only when namespace processing is enabled. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>attrList</em> </td><td>A const reference to the object containing the list of attributes just scanned for this element. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>attrCount</em> </td><td>A count of number of attributes in the list specified by the parameter 'attrList'. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>isEmpty</em> </td><td>A flag indicating whether this is an empty element or not. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>isRoot</em> </td><td>A flag indicating whether this element was the root element. </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classDocumentHandler.html#15fb4581aec4828d3ee85b658f7ceb69" title="Receive notification of the beginning of an element.">DocumentHandler::startElement</a> </dd></dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#250012111c4733654491ca3ed3db2ecf">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="9b7a5e8108844fdc07c9e89a9968f69b"></a><!-- doxytag: member="SAXParser::startEntityReference" ref="9b7a5e8108844fdc07c9e89a9968f69b" args="(const XMLEntityDecl &entDecl)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::startEntityReference </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classXMLEntityDecl.html">XMLEntityDecl</a> & </td>
<td class="paramname"> <em>entDecl</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to indicate the start of an entity reference.
<p>
If any advanced callback handlers are installed, the corresponding 'endEntityReference' method is invoked.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>entDecl</em> </td><td>A const reference to the object containing the entity declaration information. </td></tr>
</table>
</dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#2d3ab93a0191825f8452a4980d163f37">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="df4450d507d40f441732ba0fef5d90a8"></a><!-- doxytag: member="SAXParser::XMLDecl" ref="df4450d507d40f441732ba0fef5d90a8" args="(const XMLCh *const versionStr, const XMLCh *const encodingStr, const XMLCh *const standaloneStr, const XMLCh *const actualEncodingStr)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::XMLDecl </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>versionStr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>encodingStr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>standaloneStr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>actualEncodingStr</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report the XML decl scanned by the parser.
<p>
Refer to the XML specification to see the meaning of parameters.<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>versionStr</em> </td><td>A const pointer to a Unicode string representing version string value. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>encodingStr</em> </td><td>A const pointer to a Unicode string representing the encoding string value. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>standaloneStr</em> </td><td>A const pointer to a Unicode string representing the standalone string value. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>actualEncodingStr</em> </td><td>A const pointer to a Unicode string representing the actual encoding string value. </td></tr>
</table>
</dl>
<p>Implements <a class="el" href="classXMLDocumentHandler.html#262b2d7e996c21b466f4e573c052a583">XMLDocumentHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="0c76a73233b61cc59a907e1f8fb5c341"></a><!-- doxytag: member="SAXParser::error" ref="0c76a73233b61cc59a907e1f8fb5c341" args="(const unsigned int errCode, const XMLCh *const msgDomain, const XMLErrorReporter::ErrTypes errType, const XMLCh *const errorText, const XMLCh *const systemId, const XMLCh *const publicId, const XMLFileLoc lineNum, const XMLFileLoc colNum)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::error </td>
<td>(</td>
<td class="paramtype">const unsigned int </td>
<td class="paramname"> <em>errCode</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>msgDomain</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classXMLErrorReporter.html#db34298ba3609a10c52328e5050d4434">XMLErrorReporter::ErrTypes</a> </td>
<td class="paramname"> <em>errType</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>errorText</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>systemId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>publicId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#dd2d542a6583db767febf57446daa50d">XMLFileLoc</a> </td>
<td class="paramname"> <em>lineNum</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#dd2d542a6583db767febf57446daa50d">XMLFileLoc</a> </td>
<td class="paramname"> <em>colNum</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report back errors found while parsing the XML file.
<p>
The driver will call the corresponding user installed SAX Error Handler methods: 'fatal', 'error', 'warning' depending on the severity of the error. This classification is defined by the XML specification.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>errCode</em> </td><td>An integer code for the error. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>msgDomain</em> </td><td>A const pointer to an Unicode string representing the message domain to use. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>errType</em> </td><td>An enumeration classifying the severity of the error. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>errorText</em> </td><td>A const pointer to an Unicode string representing the text of the error message. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>systemId</em> </td><td>A const pointer to an Unicode string representing the system id of the XML file where this error was discovered. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>publicId</em> </td><td>A const pointer to an Unicode string representing the public id of the XML file where this error was discovered. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>lineNum</em> </td><td>The line number where the error occurred. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>colNum</em> </td><td>The column number where the error occurred. </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classErrorHandler.html" title="Basic interface for SAX error handlers.">ErrorHandler</a> </dd></dl>
<p>Implements <a class="el" href="classXMLErrorReporter.html#6eca467a4753ce0dc6222aafe5c19ed0">XMLErrorReporter</a>.</p>
</div>
</div><p>
<a class="anchor" name="6294c7a4c3f7174e5d2838ec69dae106"></a><!-- doxytag: member="SAXParser::resetErrors" ref="6294c7a4c3f7174e5d2838ec69dae106" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::resetErrors </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows the user installed Error Handler callback to 'reset' itself.
<p>
<b>This method is a no-op for this SAX driver implementation.</b>
<p>Implements <a class="el" href="classXMLErrorReporter.html#a8364a38a2ac6657448bad08ff6f0091">XMLErrorReporter</a>.</p>
</div>
</div><p>
<a class="anchor" name="d075bfe6b2be4105f9dda5b1c3651e41"></a><!-- doxytag: member="SAXParser::endInputSource" ref="d075bfe6b2be4105f9dda5b1c3651e41" args="(const InputSource &inputSource)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::endInputSource </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classInputSource.html">InputSource</a> & </td>
<td class="paramname"> <em>inputSource</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to indicate the end of parsing of an external entity file.
<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>inputSource</em> </td><td>A const reference to the <a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a> object which points to the XML file being parsed. </td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a> </dd></dl>
<p>Implements <a class="el" href="classXMLEntityHandler.html#f1b5c220b47c05c188cbd88363e9a41d">XMLEntityHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="ca8b719e6b3b1e61def130ae58d795c8"></a><!-- doxytag: member="SAXParser::expandSystemId" ref="ca8b719e6b3b1e61def130ae58d795c8" args="(const XMLCh *const systemId, XMLBuffer &toFill)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool SAXParser::expandSystemId </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>systemId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">XMLBuffer & </td>
<td class="paramname"> <em>toFill</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows an installed <a class="el" href="classXMLEntityHandler.html" title="This abstract class is a callback mechanism for the scanner.">XMLEntityHandler</a> to further process any system id's of external entities encountered in the XML file being parsed, such as redirection etc.
<p>
<b>This method always returns 'false' for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>systemId</em> </td><td>A const pointer to an Unicode string representing the system id scanned by the parser. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>toFill</em> </td><td>A pointer to a buffer in which the application processed system id is stored. </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>'true', if any processing is done, 'false' otherwise. </dd></dl>
<p>Implements <a class="el" href="classXMLEntityHandler.html#a64d97114fb1fa62502fba6d9ed5346c">XMLEntityHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="ab74b3fa5cc7a34beee6b7293a0c5819"></a><!-- doxytag: member="SAXParser::resetEntities" ref="ab74b3fa5cc7a34beee6b7293a0c5819" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::resetEntities </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows the installed <a class="el" href="classXMLEntityHandler.html" title="This abstract class is a callback mechanism for the scanner.">XMLEntityHandler</a> to reset itself.
<p>
<b>This method is a no-op for this SAX driver implementation.</b>
<p>Implements <a class="el" href="classXMLEntityHandler.html#f096953b99a5de9f039df902c7f3543d">XMLEntityHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="a4ed9dece6679d979f7b7458b279d0eb"></a><!-- doxytag: member="SAXParser::resolveEntity" ref="a4ed9dece6679d979f7b7458b279d0eb" args="(XMLResourceIdentifier *resourceIdentifier)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual <a class="el" href="classInputSource.html">InputSource</a>* SAXParser::resolveEntity </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classXMLResourceIdentifier.html">XMLResourceIdentifier</a> * </td>
<td class="paramname"> <em>resourceIdentifier</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Resolve a public/system id.
<p>
This method allows a user installed entity handler to further process any pointers to external entities. The applications can implement 'redirection' via this callback.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>resourceIdentifier</em> </td><td>An object containing the type of resource to be resolved and the associated data members corresponding to this type. </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The value returned by the user installed resolveEntity method or NULL otherwise to indicate no processing was done. The returned <a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a> is owned by the parser which is responsible to clean up the memory. </dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classXMLEntityHandler.html" title="This abstract class is a callback mechanism for the scanner.">XMLEntityHandler</a> <p>
<a class="el" href="classXMLEntityResolver.html" title="Revised interface for resolving entities.">XMLEntityResolver</a> </dd></dl>
<p>Implements <a class="el" href="classXMLEntityHandler.html#8994f00cc9ba227fe8afa273605356d9">XMLEntityHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="2a942fc0cb2f4c0d06f5ed86a1dacb0b"></a><!-- doxytag: member="SAXParser::startInputSource" ref="2a942fc0cb2f4c0d06f5ed86a1dacb0b" args="(const InputSource &inputSource)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::startInputSource </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classInputSource.html">InputSource</a> & </td>
<td class="paramname"> <em>inputSource</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to indicate the start of parsing an external entity file.
<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>inputSource</em> </td><td>A const reference to the <a class="el" href="classInputSource.html" title="A single input source for an XML entity.">InputSource</a> object which points to the external entity being parsed. </td></tr>
</table>
</dl>
<p>Implements <a class="el" href="classXMLEntityHandler.html#a59b2da6316f575899b6a8a3fef7477c">XMLEntityHandler</a>.</p>
</div>
</div><p>
<a class="anchor" name="234c7ee7bcfe811951e00bc459a280ca"></a><!-- doxytag: member="SAXParser::attDef" ref="234c7ee7bcfe811951e00bc459a280ca" args="(const DTDElementDecl &elemDecl, const DTDAttDef &attDef, const bool ignore)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::attDef </td>
<td>(</td>
<td class="paramtype">const DTDElementDecl & </td>
<td class="paramname"> <em>elemDecl</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const DTDAttDef & </td>
<td class="paramname"> <em>attDef</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>ignore</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report an attribute definition.
<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>elemDecl</em> </td><td>A const reference to the object containing information about the element whose attribute definition was just parsed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>attDef</em> </td><td>A const reference to the object containing information attribute definition. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>ignore</em> </td><td>The flag indicating whether this attribute definition was ignored by the parser or not. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="344e1ff54a75bd037c1c8f3a074b42a8"></a><!-- doxytag: member="SAXParser::doctypeComment" ref="344e1ff54a75bd037c1c8f3a074b42a8" args="(const XMLCh *const comment)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::doctypeComment </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>comment</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report a comment occurring within the DTD.
<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>comment</em> </td><td>A const pointer to a Unicode string representing the text of the comment just parsed. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="d60425e05920e63ad0e8e31eb00d7340"></a><!-- doxytag: member="SAXParser::doctypeDecl" ref="d60425e05920e63ad0e8e31eb00d7340" args="(const DTDElementDecl &elemDecl, const XMLCh *const publicId, const XMLCh *const systemId, const bool hasIntSubset, const bool hasExtSubset=false)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::doctypeDecl </td>
<td>(</td>
<td class="paramtype">const DTDElementDecl & </td>
<td class="paramname"> <em>elemDecl</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>publicId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>systemId</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>hasIntSubset</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>hasExtSubset</em> = <code>false</code></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report the DOCTYPE declaration.
<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>elemDecl</em> </td><td>A const reference to the object containing information about the root element definition declaration of the XML document being parsed. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>publicId</em> </td><td>A const pointer to a Unicode string representing the public id of the DTD file. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>systemId</em> </td><td>A const pointer to a Unicode string representing the system id of the DTD file. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>hasIntSubset</em> </td><td>A flag indicating if this XML file contains any internal subset. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>hasExtSubset</em> </td><td>A flag indicating if this XML file contains any external subset. Default is false. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="81a86050c330f4668f95e34dc7e3a5b5"></a><!-- doxytag: member="SAXParser::doctypePI" ref="81a86050c330f4668f95e34dc7e3a5b5" args="(const XMLCh *const target, const XMLCh *const data)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::doctypePI </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>target</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>data</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report any PI declarations occurring inside the DTD definition block.
<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>target</em> </td><td>A const pointer to a Unicode string representing the target of the PI declaration. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>data</em> </td><td>A const pointer to a Unicode string representing the data of the PI declaration. See the PI production rule in the XML specification for details. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="22b2777f0f14c44d761f5f131149560b"></a><!-- doxytag: member="SAXParser::doctypeWhitespace" ref="22b2777f0f14c44d761f5f131149560b" args="(const XMLCh *const chars, const XMLSize_t length)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::doctypeWhitespace </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>chars</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#c0f7e36996cd03eb43bcee10321f77cd">XMLSize_t</a> </td>
<td class="paramname"> <em>length</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report any whitespaces occurring inside the DTD definition block.
<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>chars</em> </td><td>A const pointer to a Unicode string representing the whitespace characters. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>length</em> </td><td>The length of the whitespace Unicode string. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="069d275d5be7a23aa3ccf0045bd76af2"></a><!-- doxytag: member="SAXParser::elementDecl" ref="069d275d5be7a23aa3ccf0045bd76af2" args="(const DTDElementDecl &decl, const bool isIgnored)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::elementDecl </td>
<td>(</td>
<td class="paramtype">const DTDElementDecl & </td>
<td class="paramname"> <em>decl</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>isIgnored</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report an element declarations successfully scanned by the parser.
<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>decl</em> </td><td>A const reference to the object containing element declaration information. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>isIgnored</em> </td><td>The flag indicating whether this definition was ignored by the parser or not. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="81db2fe479b7377e754ced1a04be5f38"></a><!-- doxytag: member="SAXParser::endAttList" ref="81db2fe479b7377e754ced1a04be5f38" args="(const DTDElementDecl &elemDecl)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::endAttList </td>
<td>(</td>
<td class="paramtype">const DTDElementDecl & </td>
<td class="paramname"> <em>elemDecl</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report the end of an attribute list declaration for an element.
<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>elemDecl</em> </td><td>A const reference to the object containing element declaration information. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="8840966d83ba372280fe94e3ca609d74"></a><!-- doxytag: member="SAXParser::endIntSubset" ref="8840966d83ba372280fe94e3ca609d74" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::endIntSubset </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report the end of the internal subset.
<p>
<b>This method is a no-op for this SAX driver implementation.</b>
</div>
</div><p>
<a class="anchor" name="64dc3fc2c45269ecc97deea47beebe95"></a><!-- doxytag: member="SAXParser::endExtSubset" ref="64dc3fc2c45269ecc97deea47beebe95" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::endExtSubset </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report the end of the external subset.
<p>
<b>This method is a no-op for this SAX driver implementation.</b>
</div>
</div><p>
<a class="anchor" name="f79dd7052cf481b02a0289d10bbb218c"></a><!-- doxytag: member="SAXParser::entityDecl" ref="f79dd7052cf481b02a0289d10bbb218c" args="(const DTDEntityDecl &entityDecl, const bool isPEDecl, const bool isIgnored)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::entityDecl </td>
<td>(</td>
<td class="paramtype">const DTDEntityDecl & </td>
<td class="paramname"> <em>entityDecl</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>isPEDecl</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>isIgnored</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report any entity declarations.
<p>
For unparsed entities, this driver will invoke the SAX <a class="el" href="classDTDHandler.html#713d4ba5348319077a8d9b8f2d0948d6" title="Receive notification of an unparsed entity declaration event.">DTDHandler::unparsedEntityDecl</a> callback.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>entityDecl</em> </td><td>A const reference to the object containing the entity declaration information. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>isPEDecl</em> </td><td>The flag indicating whether this was a parameter entity declaration or not. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>isIgnored</em> </td><td>The flag indicating whether this definition was ignored by the parser or not.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classDTDHandler.html#713d4ba5348319077a8d9b8f2d0948d6" title="Receive notification of an unparsed entity declaration event.">DTDHandler::unparsedEntityDecl</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="42c4888ca6a9b0db0f10ceecbcd89cad"></a><!-- doxytag: member="SAXParser::resetDocType" ref="42c4888ca6a9b0db0f10ceecbcd89cad" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::resetDocType </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method allows the user installed DTD handler to reset itself.
<p>
</div>
</div><p>
<a class="anchor" name="65c8b022c0a5722cd289de2790ec80ba"></a><!-- doxytag: member="SAXParser::notationDecl" ref="65c8b022c0a5722cd289de2790ec80ba" args="(const XMLNotationDecl &notDecl, const bool isIgnored)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::notationDecl </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classXMLNotationDecl.html">XMLNotationDecl</a> & </td>
<td class="paramname"> <em>notDecl</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const bool </td>
<td class="paramname"> <em>isIgnored</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report any notation declarations.
<p>
If there is a user installed <a class="el" href="classDTDHandler.html" title="Receive notification of basic DTD-related events.">DTDHandler</a>, then the driver will invoke the SAX <a class="el" href="classDTDHandler.html#aafc15a4880f41e9e44904be254cb70d" title="Receive notification of a notation declaration event.">DTDHandler::notationDecl</a> callback.<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>notDecl</em> </td><td>A const reference to the object containing the notation declaration information. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>isIgnored</em> </td><td>The flag indicating whether this definition was ignored by the parser or not.</td></tr>
</table>
</dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="classDTDHandler.html#aafc15a4880f41e9e44904be254cb70d" title="Receive notification of a notation declaration event.">DTDHandler::notationDecl</a> </dd></dl>
</div>
</div><p>
<a class="anchor" name="515a3ad95d129802fd0b35d05bf69351"></a><!-- doxytag: member="SAXParser::startAttList" ref="515a3ad95d129802fd0b35d05bf69351" args="(const DTDElementDecl &elemDecl)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::startAttList </td>
<td>(</td>
<td class="paramtype">const DTDElementDecl & </td>
<td class="paramname"> <em>elemDecl</em> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to indicate the start of an element's attribute list declaration.
<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>elemDecl</em> </td><td>A const reference to the object containing element declaration information. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="db52cf788073a3fb61a9f08c3d3e3444"></a><!-- doxytag: member="SAXParser::startIntSubset" ref="db52cf788073a3fb61a9f08c3d3e3444" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::startIntSubset </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used indicate the start of the internal subset.
<p>
<b>This method is a no-op for this SAX driver implementation.</b>
</div>
</div><p>
<a class="anchor" name="36a23d18017c2a43c4d3c2a2b7871b83"></a><!-- doxytag: member="SAXParser::startExtSubset" ref="36a23d18017c2a43c4d3c2a2b7871b83" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::startExtSubset </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used indicate the start of the external subset.
<p>
<b>This method is a no-op for this SAX driver implementation.</b>
</div>
</div><p>
<a class="anchor" name="e02e7f225e3cfe19b6cd5b17466631a4"></a><!-- doxytag: member="SAXParser::TextDecl" ref="e02e7f225e3cfe19b6cd5b17466631a4" args="(const XMLCh *const versionStr, const XMLCh *const encodingStr)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void SAXParser::TextDecl </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>versionStr</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="Xerces__autoconf__config_8msvc_8hpp.html#fae8f92d83170d97f757f704eca7f52a">XMLCh</a> *const </td>
<td class="paramname"> <em>encodingStr</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method is used to report the TextDecl.
<p>
Refer to the XML specification for the syntax of a TextDecl.<p>
<b>This method is a no-op for this SAX driver implementation.</b><p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>versionStr</em> </td><td>A const pointer to a Unicode string representing the version number of the 'version' clause. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>encodingStr</em> </td><td>A const pointer to a Unicode string representing the encoding name of the 'encoding' clause. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="fca882e35007fb148ebebce061172eab"></a><!-- doxytag: member="SAXParser::getScanner" ref="fca882e35007fb148ebebce061172eab" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const XMLScanner & SAXParser::getScanner </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const<code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This method returns a reference to the underlying scanner object.
<p>
It allows read only access to data maintained in the scanner.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A const reference to the underlying scanner object. </dd></dl>
</div>
</div><p>
<a class="anchor" name="64a257c98cc32901b51053626878f515"></a><!-- doxytag: member="SAXParser::getGrammarResolver" ref="64a257c98cc32901b51053626878f515" args="() const " -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GrammarResolver * SAXParser::getGrammarResolver </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td> const<code> [protected]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Get the Grammar resolver.
<p>
This provides derived classes with access to the grammar resolver.
</div>
</div><p>
<hr>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="SAXParser_8hpp-source.html">SAXParser.hpp</a></ul>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Wed Apr 21 17:55:50 2010 for Xerces-C++ by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
</body>
</html>
|