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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<!--NewPage-->
<html>
<head>
<!-- Generated by javadoc on Sat Jan 02 02:58:02 GMT 1999 -->
<title>
Index of all Fields and Methods
</title>
</head>
<body>
<a name="_top_"></a>
<pre><a href="packages.html">All Packages</a> <a href="tree.html">Class Hierarchy</a></pre><hr>
<a href="#Thumb-A">A</a>
<a href="#Thumb-B">B</a>
<a href="#Thumb-C">C</a>
<a href="#Thumb-D">D</a>
<a href="#Thumb-E">E</a>
<a href="#Thumb-F">F</a>
<a href="#Thumb-G">G</a>
<a href="#Thumb-H">H</a>
<a href="#Thumb-I">I</a>
<a href="#Thumb-J">J</a>
<a href="#Thumb-K">K</a>
<a href="#Thumb-L">L</a>
<a href="#Thumb-M">M</a>
<a href="#Thumb-N">N</a>
<a href="#Thumb-O">O</a>
<a href="#Thumb-P">P</a>
<a href="#Thumb-Q">Q</a>
<a href="#Thumb-R">R</a>
<a href="#Thumb-S">S</a>
<a href="#Thumb-T">T</a>
<a href="#Thumb-U">U</a>
<a href="#Thumb-V">V</a>
<a href="#Thumb-W">W</a>
<a href="#Thumb-X">X</a>
<a href="#Thumb-Y">Y</a>
<a href="#Thumb-Z">Z</a>
<hr>
<h1>
Index of all Fields and Methods
</h1>
<a name="Thumb-A"></a>
<h2>
<a name="Thumb-A"><b> A </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#action(int, byte[], int, int, com.jclark.xml.tok.Encoding)"><b>action</b></a>(int, byte[], int, int, Encoding).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTLIST_ELEMENT_NAME"><b>ACTION_ATTLIST_ELEMENT_NAME</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_ENUM_VALUE"><b>ACTION_ATTRIBUTE_ENUM_VALUE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_NAME"><b>ACTION_ATTRIBUTE_NAME</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_NOTATION_VALUE"><b>ACTION_ATTRIBUTE_NOTATION_VALUE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_TYPE_CDATA"><b>ACTION_ATTRIBUTE_TYPE_CDATA</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_TYPE_ENTITIES"><b>ACTION_ATTRIBUTE_TYPE_ENTITIES</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_TYPE_ENTITY"><b>ACTION_ATTRIBUTE_TYPE_ENTITY</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_TYPE_ID"><b>ACTION_ATTRIBUTE_TYPE_ID</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_TYPE_IDREF"><b>ACTION_ATTRIBUTE_TYPE_IDREF</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_TYPE_IDREFS"><b>ACTION_ATTRIBUTE_TYPE_IDREFS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_TYPE_NMTOKEN"><b>ACTION_ATTRIBUTE_TYPE_NMTOKEN</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ATTRIBUTE_TYPE_NMTOKENS"><b>ACTION_ATTRIBUTE_TYPE_NMTOKENS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_COMMENT"><b>ACTION_COMMENT</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_CONTENT_ANY"><b>ACTION_CONTENT_ANY</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_CONTENT_ELEMENT"><b>ACTION_CONTENT_ELEMENT</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_CONTENT_ELEMENT_OPT"><b>ACTION_CONTENT_ELEMENT_OPT</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_CONTENT_ELEMENT_PLUS"><b>ACTION_CONTENT_ELEMENT_PLUS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_CONTENT_ELEMENT_REP"><b>ACTION_CONTENT_ELEMENT_REP</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_CONTENT_EMPTY"><b>ACTION_CONTENT_EMPTY</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_CONTENT_PCDATA"><b>ACTION_CONTENT_PCDATA</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_DECL_CLOSE"><b>ACTION_DECL_CLOSE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_DEFAULT_ATTRIBUTE_VALUE"><b>ACTION_DEFAULT_ATTRIBUTE_VALUE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_DOCTYPE_CLOSE"><b>ACTION_DOCTYPE_CLOSE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_DOCTYPE_NAME"><b>ACTION_DOCTYPE_NAME</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_DOCTYPE_PUBLIC_ID"><b>ACTION_DOCTYPE_PUBLIC_ID</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_DOCTYPE_SUBSET"><b>ACTION_DOCTYPE_SUBSET</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_DOCTYPE_SYSTEM_ID"><b>ACTION_DOCTYPE_SYSTEM_ID</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ELEMENT_NAME"><b>ACTION_ELEMENT_NAME</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ENTITY_NOTATION_NAME"><b>ACTION_ENTITY_NOTATION_NAME</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ENTITY_PUBLIC_ID"><b>ACTION_ENTITY_PUBLIC_ID</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ENTITY_SYSTEM_ID"><b>ACTION_ENTITY_SYSTEM_ID</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ENTITY_VALUE_NO_PEREFS"><b>ACTION_ENTITY_VALUE_NO_PEREFS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_ENTITY_VALUE_WITH_PEREFS"><b>ACTION_ENTITY_VALUE_WITH_PEREFS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_FIXED_ATTRIBUTE_VALUE"><b>ACTION_FIXED_ATTRIBUTE_VALUE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_GENERAL_ENTITY_NAME"><b>ACTION_GENERAL_ENTITY_NAME</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_GROUP_CHOICE"><b>ACTION_GROUP_CHOICE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_GROUP_CLOSE"><b>ACTION_GROUP_CLOSE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_GROUP_CLOSE_OPT"><b>ACTION_GROUP_CLOSE_OPT</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_GROUP_CLOSE_PLUS"><b>ACTION_GROUP_CLOSE_PLUS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_GROUP_CLOSE_REP"><b>ACTION_GROUP_CLOSE_REP</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_GROUP_OPEN"><b>ACTION_GROUP_OPEN</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_GROUP_SEQUENCE"><b>ACTION_GROUP_SEQUENCE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_IGNORE_SECT"><b>ACTION_IGNORE_SECT</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_IMPLIED_ATTRIBUTE_VALUE"><b>ACTION_IMPLIED_ATTRIBUTE_VALUE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_INNER_PARAM_ENTITY_REF"><b>ACTION_INNER_PARAM_ENTITY_REF</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_NONE"><b>ACTION_NONE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_NOTATION_NAME"><b>ACTION_NOTATION_NAME</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_NOTATION_PUBLIC_ID"><b>ACTION_NOTATION_PUBLIC_ID</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_NOTATION_SYSTEM_ID"><b>ACTION_NOTATION_SYSTEM_ID</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_OUTER_PARAM_ENTITY_REF"><b>ACTION_OUTER_PARAM_ENTITY_REF</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_PARAM_ENTITY_NAME"><b>ACTION_PARAM_ENTITY_NAME</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_PI"><b>ACTION_PI</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_REQUIRED_ATTRIBUTE_VALUE"><b>ACTION_REQUIRED_ATTRIBUTE_VALUE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_TEXT_DECL"><b>ACTION_TEXT_DECL</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#ACTION_XML_DECL"><b>ACTION_XML_DECL</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#allowedValues()"><b>allowedValues</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd> Returns an enumeration over the allowed values
if this was declared as an enumerated type, and null otherwise.
<dt> <a href="com.jclark.xml.parse.ElementType.html#ANY_CONTENT"><b>ANY_CONTENT</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ElementType.html#_top_">ElementType</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Buffer.html#append(char)"><b>append</b></a>(char).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Buffer.html#_top_">Buffer</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Buffer.html#append(com.jclark.xml.tok.Encoding, byte[], int, int)"><b>append</b></a>(Encoding, byte[], int, int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Buffer.html#_top_">Buffer</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Buffer.html#appendRefCharPair(com.jclark.xml.tok.Token)"><b>appendRefCharPair</b></a>(Token).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Buffer.html#_top_">Buffer</a>
<dd>
<dt> <a href="com.jclark.xml.parse.ApplicationException.html#ApplicationException(java.lang.Exception)"><b>ApplicationException</b></a>(Exception).
Constructor for class com.jclark.xml.parse.<a href="com.jclark.xml.parse.ApplicationException.html#_top_">ApplicationException</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#ApplicationImpl()"><b>ApplicationImpl</b></a>().
Constructor for class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#ApplicationImpl()"><b>ApplicationImpl</b></a>().
Constructor for class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#ApplicationImpl()"><b>ApplicationImpl</b></a>().
Constructor for class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#ATTRIBUTE"><b>ATTRIBUTE</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#_top_">MarkupDeclarationEvent</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#attribute(java.lang.String, java.lang.String)"><b>attribute</b></a>(String, String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Writes an attribute.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#attribute(java.lang.String, java.lang.String)"><b>attribute</b></a>(String, String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Writes an attribute.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#attribute(java.lang.String, java.lang.String)"><b>attribute</b></a>(String, String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Writes an attribute.
<dt> <a href="com.jclark.xml.parse.ElementType.html#attributeNames()"><b>attributeNames</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ElementType.html#_top_">ElementType</a>
<dd> Returns an enumeration over the names of attributes defined
for an element type.
</dl>
<a name="Thumb-B"></a>
<hr>
<h2>
<a name="Thumb-B"><b> B </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.tok.Buffer.html#Buffer()"><b>Buffer</b></a>().
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Buffer.html#_top_">Buffer</a>
<dd>
</dl>
<a name="Thumb-C"></a>
<hr>
<h2>
<a name="Thumb-C"><b> C </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#CDATA"><b>CDATA</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#cdataSection(java.lang.String)"><b>cdataSection</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Writes a CDATA section.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#cdataSection(java.lang.String)"><b>cdataSection</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Writes a CDATA section.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#cdataSection(java.lang.String)"><b>cdataSection</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Writes a CDATA section.
<dt> <a href="com.jclark.xml.parse.awt.Application.html#characterData(com.jclark.xml.parse.CharacterDataEvent)"><b>characterData</b></a>(CharacterDataEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports character data.
<dt> <a href="com.jclark.xml.parse.base.Application.html#characterData(com.jclark.xml.parse.CharacterDataEvent)"><b>characterData</b></a>(CharacterDataEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports character data.
<dt> <a href="com.jclark.xml.parse.io.Application.html#characterData(com.jclark.xml.parse.CharacterDataEvent)"><b>characterData</b></a>(CharacterDataEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports character data.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#characterData(com.jclark.xml.parse.CharacterDataEvent)"><b>characterData</b></a>(CharacterDataEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#characterData(com.jclark.xml.parse.CharacterDataEvent)"><b>characterData</b></a>(CharacterDataEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#characterData(com.jclark.xml.parse.CharacterDataEvent)"><b>characterData</b></a>(CharacterDataEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#characterData(com.jclark.xml.parse.CharacterDataEvent)"><b>characterData</b></a>(CharacterDataEvent).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Normalize.html#characterData(com.jclark.xml.parse.CharacterDataEvent)"><b>characterData</b></a>(CharacterDataEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Normalize.html#_top_">Normalize</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#characterReference(int)"><b>characterReference</b></a>(int).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Writes a character reference.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#characterReference(int)"><b>characterReference</b></a>(int).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Writes a character reference.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#characterReference(int)"><b>characterReference</b></a>(int).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Writes a character reference.
<dt> <a href="com.jclark.xml.tok.Buffer.html#charAt(int)"><b>charAt</b></a>(int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Buffer.html#_top_">Buffer</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Buffer.html#chop()"><b>chop</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Buffer.html#_top_">Buffer</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Buffer.html#clear()"><b>clear</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Buffer.html#_top_">Buffer</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Position.html#clone()"><b>clone</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Position.html#_top_">Position</a>
<dd> Returns a copy of this position.
<dt> <a href="com.jclark.xml.tok.PrologParser.html#clone()"><b>clone</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.sax.ReaderInputStream.html#close()"><b>close</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.ReaderInputStream.html#_top_">ReaderInputStream</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#close()"><b>close</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#close()"><b>close</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.Application.html#comment(com.jclark.xml.parse.CommentEvent)"><b>comment</b></a>(CommentEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports a comment.
<dt> <a href="com.jclark.xml.parse.base.Application.html#comment(com.jclark.xml.parse.CommentEvent)"><b>comment</b></a>(CommentEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports a comment.
<dt> <a href="com.jclark.xml.parse.io.Application.html#comment(com.jclark.xml.parse.CommentEvent)"><b>comment</b></a>(CommentEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports a comment.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#comment(com.jclark.xml.parse.CommentEvent)"><b>comment</b></a>(CommentEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#comment(com.jclark.xml.parse.CommentEvent)"><b>comment</b></a>(CommentEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#comment(com.jclark.xml.parse.CommentEvent)"><b>comment</b></a>(CommentEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.sax.CommentDriver.html#comment(com.jclark.xml.parse.CommentEvent)"><b>comment</b></a>(CommentEvent).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.CommentDriver.html#_top_">CommentDriver</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Doctype.html#comment(com.jclark.xml.parse.CommentEvent)"><b>comment</b></a>(CommentEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#comment(java.lang.String)"><b>comment</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Writes a comment.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#comment(java.lang.String)"><b>comment</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Writes a comment.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#comment(java.lang.String)"><b>comment</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Writes a comment.
<dt> <a href="com.jclark.xml.sax.CommentDriver.html#CommentDriver()"><b>CommentDriver</b></a>().
Constructor for class com.jclark.xml.sax.<a href="com.jclark.xml.sax.CommentDriver.html#_top_">CommentDriver</a>
<dd>
<dt> <a href="com.jclark.xml.tok.ContentToken.html#ContentToken()"><b>ContentToken</b></a>().
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.ContentToken.html#_top_">ContentToken</a>
<dd>
<dt> <a href="com.jclark.xml.tok.StringConversionCache.html#convert(byte[], int, int, boolean)"><b>convert</b></a>(byte[], int, int, boolean).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.StringConversionCache.html#_top_">StringConversionCache</a>
<dd> Convert a byte subarray into a String.
<dt> <a href="com.jclark.xml.tok.Encoding.html#convert(byte[], int, int, char[], int)"><b>convert</b></a>(byte[], int, int, char[], int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Convert bytes to characters.
<dt> <a href="com.jclark.xml.tok.ByteToCharConverter.html#convertBytes(byte[], int)"><b>convertBytes</b></a>(byte[], int).
Method in interface com.jclark.xml.tok.<a href="com.jclark.xml.tok.ByteToCharConverter.html#_top_">ByteToCharConverter</a>
<dd> Returns the Unicode scalar value of the character encoded
by the <code>n</code> bytes in
<code>buf</code> starting at offset <code>off</code>,
where <code>n >= 2</code> and
<code>n = -getLeadByteType(buf[off])</code>.
<dt> <a href="com.jclark.xml.parse.CharacterDataEvent.html#copyChars(char[], int)"><b>copyChars</b></a>(char[], int).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.CharacterDataEvent.html#_top_">CharacterDataEvent</a>
<dd> Copies the character data into the specified character array
starting at index <code>off</code>.
</dl>
<a name="Thumb-D"></a>
<hr>
<h2>
<a name="Thumb-D"><b> D </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.apps.Doctype.html#Doctype(java.io.PrintWriter)"><b>Doctype</b></a>(PrintWriter).
Constructor for class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.parse.DocumentParser.html#DocumentParser()"><b>DocumentParser</b></a>().
Constructor for class com.jclark.xml.parse.<a href="com.jclark.xml.parse.DocumentParser.html#_top_">DocumentParser</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#Driver()"><b>Driver</b></a>().
Constructor for class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.tok.InvalidTokenException.html#DUPLICATE_ATTRIBUTE"><b>DUPLICATE_ATTRIBUTE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.InvalidTokenException.html#_top_">InvalidTokenException</a>
<dd> A duplicate attribute was specified.
</dl>
<a name="Thumb-E"></a>
<hr>
<h2>
<a name="Thumb-E"><b> E </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#ELEMENT"><b>ELEMENT</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#_top_">MarkupDeclarationEvent</a>
<dd>
<dt> <a href="com.jclark.xml.parse.ElementType.html#ELEMENT_CONTENT"><b>ELEMENT_CONTENT</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ElementType.html#_top_">ElementType</a>
<dd>
<dt> <a href="com.jclark.xml.parse.DTD.html#elementTypeNames()"><b>elementTypeNames</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> Returns an enumeration over the names of element types which were
declared in the DTD or for which attributes were declared in the DTD.
<dt> <a href="com.jclark.xml.parse.ElementType.html#EMPTY_CONTENT"><b>EMPTY_CONTENT</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ElementType.html#_top_">ElementType</a>
<dd>
<dt> <a href="com.jclark.xml.tok.EmptyTokenException.html#EmptyTokenException()"><b>EmptyTokenException</b></a>().
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.EmptyTokenException.html#_top_">EmptyTokenException</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#end()"><b>end</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#endAttribute()"><b>endAttribute</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Ends an attribute.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#endAttribute()"><b>endAttribute</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Ends an attribute.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#endAttribute()"><b>endAttribute</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Ends an attribute.
<dt> <a href="com.jclark.xml.parse.awt.Application.html#endCdataSection(com.jclark.xml.parse.EndCdataSectionEvent)"><b>endCdataSection</b></a>(EndCdataSectionEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the end of a CDATA section.
<dt> <a href="com.jclark.xml.parse.base.Application.html#endCdataSection(com.jclark.xml.parse.EndCdataSectionEvent)"><b>endCdataSection</b></a>(EndCdataSectionEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the end of a CDATA section.
<dt> <a href="com.jclark.xml.parse.io.Application.html#endCdataSection(com.jclark.xml.parse.EndCdataSectionEvent)"><b>endCdataSection</b></a>(EndCdataSectionEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the end of a CDATA section.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#endCdataSection(com.jclark.xml.parse.EndCdataSectionEvent)"><b>endCdataSection</b></a>(EndCdataSectionEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#endCdataSection(com.jclark.xml.parse.EndCdataSectionEvent)"><b>endCdataSection</b></a>(EndCdataSectionEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#endCdataSection(com.jclark.xml.parse.EndCdataSectionEvent)"><b>endCdataSection</b></a>(EndCdataSectionEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.Application.html#endDocument()"><b>endDocument</b></a>().
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the end of the document.
<dt> <a href="com.jclark.xml.parse.base.Application.html#endDocument()"><b>endDocument</b></a>().
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the end of the document.
<dt> <a href="com.jclark.xml.parse.io.Application.html#endDocument()"><b>endDocument</b></a>().
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the end of the document.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#endDocument()"><b>endDocument</b></a>().
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#endDocument()"><b>endDocument</b></a>().
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#endDocument()"><b>endDocument</b></a>().
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#endDocument()"><b>endDocument</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Normalize.html#endDocument()"><b>endDocument</b></a>().
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Normalize.html#_top_">Normalize</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.Application.html#endDocumentTypeDeclaration(com.jclark.xml.parse.EndDocumentTypeDeclarationEvent)"><b>endDocumentTypeDeclaration</b></a>(EndDocumentTypeDeclarationEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the end of the document type declaration.
<dt> <a href="com.jclark.xml.parse.base.Application.html#endDocumentTypeDeclaration(com.jclark.xml.parse.EndDocumentTypeDeclarationEvent)"><b>endDocumentTypeDeclaration</b></a>(EndDocumentTypeDeclarationEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the end of the document type declaration.
<dt> <a href="com.jclark.xml.parse.io.Application.html#endDocumentTypeDeclaration(com.jclark.xml.parse.EndDocumentTypeDeclarationEvent)"><b>endDocumentTypeDeclaration</b></a>(EndDocumentTypeDeclarationEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the end of the document type declaration.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#endDocumentTypeDeclaration(com.jclark.xml.parse.EndDocumentTypeDeclarationEvent)"><b>endDocumentTypeDeclaration</b></a>(EndDocumentTypeDeclarationEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#endDocumentTypeDeclaration(com.jclark.xml.parse.EndDocumentTypeDeclarationEvent)"><b>endDocumentTypeDeclaration</b></a>(EndDocumentTypeDeclarationEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#endDocumentTypeDeclaration(com.jclark.xml.parse.EndDocumentTypeDeclarationEvent)"><b>endDocumentTypeDeclaration</b></a>(EndDocumentTypeDeclarationEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Doctype.html#endDocumentTypeDeclaration(com.jclark.xml.parse.EndDocumentTypeDeclarationEvent)"><b>endDocumentTypeDeclaration</b></a>(EndDocumentTypeDeclarationEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.Application.html#endElement(com.jclark.xml.parse.EndElementEvent)"><b>endElement</b></a>(EndElementEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the end of a element.
<dt> <a href="com.jclark.xml.parse.base.Application.html#endElement(com.jclark.xml.parse.EndElementEvent)"><b>endElement</b></a>(EndElementEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the end of a element.
<dt> <a href="com.jclark.xml.parse.io.Application.html#endElement(com.jclark.xml.parse.EndElementEvent)"><b>endElement</b></a>(EndElementEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the end of a element.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#endElement(com.jclark.xml.parse.EndElementEvent)"><b>endElement</b></a>(EndElementEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#endElement(com.jclark.xml.parse.EndElementEvent)"><b>endElement</b></a>(EndElementEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#endElement(com.jclark.xml.parse.EndElementEvent)"><b>endElement</b></a>(EndElementEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#endElement(com.jclark.xml.parse.EndElementEvent)"><b>endElement</b></a>(EndElementEvent).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Normalize.html#endElement(com.jclark.xml.parse.EndElementEvent)"><b>endElement</b></a>(EndElementEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Normalize.html#_top_">Normalize</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#endElement(java.lang.String)"><b>endElement</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Ends an element.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#endElement(java.lang.String)"><b>endElement</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Ends an element.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#endElement(java.lang.String)"><b>endElement</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Ends an element.
<dt> <a href="com.jclark.xml.parse.awt.Application.html#endEntityReference(com.jclark.xml.parse.EndEntityReferenceEvent)"><b>endEntityReference</b></a>(EndEntityReferenceEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the start of an entity reference.
<dt> <a href="com.jclark.xml.parse.base.Application.html#endEntityReference(com.jclark.xml.parse.EndEntityReferenceEvent)"><b>endEntityReference</b></a>(EndEntityReferenceEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the start of an entity reference.
<dt> <a href="com.jclark.xml.parse.io.Application.html#endEntityReference(com.jclark.xml.parse.EndEntityReferenceEvent)"><b>endEntityReference</b></a>(EndEntityReferenceEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the start of an entity reference.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#endEntityReference(com.jclark.xml.parse.EndEntityReferenceEvent)"><b>endEntityReference</b></a>(EndEntityReferenceEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#endEntityReference(com.jclark.xml.parse.EndEntityReferenceEvent)"><b>endEntityReference</b></a>(EndEntityReferenceEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#endEntityReference(com.jclark.xml.parse.EndEntityReferenceEvent)"><b>endEntityReference</b></a>(EndEntityReferenceEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Doctype.html#endEntityReference(com.jclark.xml.parse.EndEntityReferenceEvent)"><b>endEntityReference</b></a>(EndEntityReferenceEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.tok.EndOfPrologException.html#EndOfPrologException()"><b>EndOfPrologException</b></a>().
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.EndOfPrologException.html#_top_">EndOfPrologException</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.Application.html#endProlog(com.jclark.xml.parse.EndPrologEvent)"><b>endProlog</b></a>(EndPrologEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the end of the prolog.
<dt> <a href="com.jclark.xml.parse.base.Application.html#endProlog(com.jclark.xml.parse.EndPrologEvent)"><b>endProlog</b></a>(EndPrologEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the end of the prolog.
<dt> <a href="com.jclark.xml.parse.io.Application.html#endProlog(com.jclark.xml.parse.EndPrologEvent)"><b>endProlog</b></a>(EndPrologEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the end of the prolog.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#endProlog(com.jclark.xml.parse.EndPrologEvent)"><b>endProlog</b></a>(EndPrologEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#endProlog(com.jclark.xml.parse.EndPrologEvent)"><b>endProlog</b></a>(EndPrologEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#endProlog(com.jclark.xml.parse.EndPrologEvent)"><b>endProlog</b></a>(EndPrologEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#endProlog(com.jclark.xml.parse.EndPrologEvent)"><b>endProlog</b></a>(EndPrologEvent).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#endReplacementText()"><b>endReplacementText</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Ends the replacement text for an internal entity.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#endReplacementText()"><b>endReplacementText</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Ends the replacement text for an internal entity.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#endReplacementText()"><b>endReplacementText</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Ends the replacement text for an internal entity.
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#ENTITIES"><b>ENTITIES</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#ENTITY"><b>ENTITY</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.parse.ParserBase.html#entityManager"><b>entityManager</b></a>.
Variable in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.ParserBase.html#_top_">ParserBase</a>
<dd>
<dt> <a href="com.jclark.xml.parse.EntityManagerImpl.html#EntityManagerImpl()"><b>EntityManagerImpl</b></a>().
Constructor for class com.jclark.xml.parse.<a href="com.jclark.xml.parse.EntityManagerImpl.html#_top_">EntityManagerImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.DTD.html#entityNames(byte)"><b>entityNames</b></a>(byte).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> Returns an enumeration over the names of entities of the
specified type.
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#entityReference(boolean, java.lang.String)"><b>entityReference</b></a>(boolean, String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Writes an entity reference.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#entityReference(boolean, java.lang.String)"><b>entityReference</b></a>(boolean, String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Writes an entity reference.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#entityReference(boolean, java.lang.String)"><b>entityReference</b></a>(boolean, String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Writes an entity reference.
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#ENUM"><b>ENUM</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#EXTERNAL_ENTITY"><b>EXTERNAL_ENTITY</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.parse.DTD.html#EXTERNAL_SUBSET_NAME"><b>EXTERNAL_SUBSET_NAME</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> The external subset declared in the document type declaration
is modelled as a parameter entity with this name.
</dl>
<a name="Thumb-F"></a>
<hr>
<h2>
<a name="Thumb-F"><b> F </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.parse.EntityManagerImpl.html#fileToURL(java.io.File)"><b>fileToURL</b></a>(File).
Static method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.EntityManagerImpl.html#_top_">EntityManagerImpl</a>
<dd> Generates a <code>URL</code> from a <code>File</code>.
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#flush()"><b>flush</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#flush()"><b>flush</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd>
</dl>
<a name="Thumb-G"></a>
<hr>
<h2>
<a name="Thumb-G"><b> G </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.parse.DTD.html#GENERAL_ENTITY"><b>GENERAL_ENTITY</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> Indicates a general entity.
<dt> <a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#GENERAL_ENTITY"><b>GENERAL_ENTITY</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#_top_">MarkupDeclarationEvent</a>
<dd>
<dt> <a href="com.jclark.xml.parse.StartElementEvent.html#getAttributeCount()"><b>getAttributeCount</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.StartElementEvent.html#_top_">StartElementEvent</a>
<dd> Returns the number of attributes.
<dt> <a href="com.jclark.xml.parse.ElementType.html#getAttributeDefinition(java.lang.String)"><b>getAttributeDefinition</b></a>(String).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ElementType.html#_top_">ElementType</a>
<dd> Returns the definition of the specified attribute or
null if no such attribute is defined.
<dt> <a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#getAttributeName()"><b>getAttributeName</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#_top_">MarkupDeclarationEvent</a>
<dd>
<dt> <a href="com.jclark.xml.parse.StartElementEvent.html#getAttributeName(int)"><b>getAttributeName</b></a>(int).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.StartElementEvent.html#_top_">StartElementEvent</a>
<dd> Returns the name of the attribute with index <code>i</code>.
<dt> <a href="com.jclark.xml.tok.ContentToken.html#getAttributeNameEnd(int)"><b>getAttributeNameEnd</b></a>(int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.ContentToken.html#_top_">ContentToken</a>
<dd> Returns the index following the last character of the name of the
attribute index <code>i</code>.
<dt> <a href="com.jclark.xml.tok.ContentToken.html#getAttributeNameStart(int)"><b>getAttributeNameStart</b></a>(int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.ContentToken.html#_top_">ContentToken</a>
<dd> Returns the index of the first character of the name of the
attribute index <code>i</code>.
<dt> <a href="com.jclark.xml.tok.ContentToken.html#getAttributeSpecifiedCount()"><b>getAttributeSpecifiedCount</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.ContentToken.html#_top_">ContentToken</a>
<dd> Returns the number of attributes specified in the start-tag
or empty element tag.
<dt> <a href="com.jclark.xml.parse.StartElementEvent.html#getAttributeSpecifiedCount()"><b>getAttributeSpecifiedCount</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.StartElementEvent.html#_top_">StartElementEvent</a>
<dd> Returns the number of attributes which were specified.
<dt> <a href="com.jclark.xml.parse.StartElementEvent.html#getAttributeUnnormalizedValue(int)"><b>getAttributeUnnormalizedValue</b></a>(int).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.StartElementEvent.html#_top_">StartElementEvent</a>
<dd> Returns the value of the specified attribute with index <code>i</code>
before normalization.
<dt> <a href="com.jclark.xml.parse.StartElementEvent.html#getAttributeValue(int)"><b>getAttributeValue</b></a>(int).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.StartElementEvent.html#_top_">StartElementEvent</a>
<dd> Returns the value of the attribute with index <code>i</code>.
<dt> <a href="com.jclark.xml.parse.StartElementEvent.html#getAttributeValue(java.lang.String)"><b>getAttributeValue</b></a>(String).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.StartElementEvent.html#_top_">StartElementEvent</a>
<dd> Returns the value of the attribute with the specified name,
Returns null if there is no such attribute, or if the
value of the attribute was implied.
<dt> <a href="com.jclark.xml.tok.ContentToken.html#getAttributeValueEnd(int)"><b>getAttributeValueEnd</b></a>(int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.ContentToken.html#_top_">ContentToken</a>
<dd> Returns the index of the closing quote attribute index <code>i</code>.
<dt> <a href="com.jclark.xml.tok.ContentToken.html#getAttributeValueStart(int)"><b>getAttributeValueStart</b></a>(int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.ContentToken.html#_top_">ContentToken</a>
<dd> Returns the index of the character following the opening quote of
attribute index <code>i</code>.
<dt> <a href="com.jclark.xml.parse.Entity.html#getBase()"><b>getBase</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.Entity.html#_top_">Entity</a>
<dd> Returns the URL that should be used for resolving the system identifier
if the system identifier is relative.
<dt> <a href="com.jclark.xml.parse.OpenEntity.html#getBase()"><b>getBase</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.OpenEntity.html#_top_">OpenEntity</a>
<dd> Returns the URL to use as the base URL for resolving relative URLs
contained in the entity.
<dt> <a href="com.jclark.xml.sax.Driver.html#getByteIndex()"><b>getByteIndex</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.NotWellFormedException.html#getByteIndex()"><b>getByteIndex</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.NotWellFormedException.html#_top_">NotWellFormedException</a>
<dd> Returns the index of the byte in the entity where the error occurred.
<dt> <a href="com.jclark.xml.parse.ParseLocation.html#getByteIndex()"><b>getByteIndex</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ParseLocation.html#_top_">ParseLocation</a>
<dd> Returns the byte index of the first byte of the character being parsed
or -1 if no byte index is available.
<dt> <a href="com.jclark.xml.tok.Buffer.html#getBytes()"><b>getBytes</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Buffer.html#_top_">Buffer</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#getColumnNumber()"><b>getColumnNumber</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.NotWellFormedException.html#getColumnNumber()"><b>getColumnNumber</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.NotWellFormedException.html#_top_">NotWellFormedException</a>
<dd> Returns the column number where the error occurred.
<dt> <a href="com.jclark.xml.parse.ParseLocation.html#getColumnNumber()"><b>getColumnNumber</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ParseLocation.html#_top_">ParseLocation</a>
<dd> Returns the column number of the character being parsed
or -1 if no column number is available.
<dt> <a href="com.jclark.xml.tok.Position.html#getColumnNumber()"><b>getColumnNumber</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Position.html#_top_">Position</a>
<dd> Returns the column number.
<dt> <a href="com.jclark.xml.parse.CommentEvent.html#getComment()"><b>getComment</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.CommentEvent.html#_top_">CommentEvent</a>
<dd> Returns the body of the comment occurring between
the <code><--</code> and <code>--></code>.
<dt> <a href="com.jclark.xml.parse.Messages.html#getContents()"><b>getContents</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.Messages.html#_top_">Messages</a>
<dd>
<dt> <a href="com.jclark.xml.parse.ElementType.html#getContentSpec()"><b>getContentSpec</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ElementType.html#_top_">ElementType</a>
<dd> Returns the <code>contentspec</code> for the element type;
the <code>contentspec</code> is the part of the element type declaration
following the element type name.
<dt> <a href="com.jclark.xml.parse.ElementType.html#getContentType()"><b>getContentType</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ElementType.html#_top_">ElementType</a>
<dd> Returns an integer corresponding to the content specified for
an element type.
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#getDefaultUnnormalizedValue()"><b>getDefaultUnnormalizedValue</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd> Returns the unnormalized default value
or null if no default value was specified.
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#getDefaultValue()"><b>getDefaultValue</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd> Returns the normalized default value
or null if no default value was specified.
<dt> <a href="com.jclark.xml.parse.DTD.html#getDocumentTypeName()"><b>getDocumentTypeName</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> Returns the document type name or null if there was no DOCTYPE
declaration.
<dt> <a href="com.jclark.xml.parse.EndDocumentTypeDeclarationEvent.html#getDTD()"><b>getDTD</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.EndDocumentTypeDeclarationEvent.html#_top_">EndDocumentTypeDeclarationEvent</a>
<dd> Returns the DTD that was declared.
<dt> <a href="com.jclark.xml.parse.EndPrologEvent.html#getDTD()"><b>getDTD</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.EndPrologEvent.html#_top_">EndPrologEvent</a>
<dd> Returns the DTD.
<dt> <a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#getDTD()"><b>getDTD</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#_top_">MarkupDeclarationEvent</a>
<dd>
<dt> <a href="com.jclark.xml.parse.StartDocumentTypeDeclarationEvent.html#getDTD()"><b>getDTD</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.StartDocumentTypeDeclarationEvent.html#_top_">StartDocumentTypeDeclarationEvent</a>
<dd> Returns the DTD being declared.
<dt> <a href="com.jclark.xml.parse.DTD.html#getElementType(java.lang.String)"><b>getElementType</b></a>(String).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> Returns information about the element type with the specified name,
or null if there was neither an ELEMENT nor an ATTLIST declaration.
<dt> <a href="com.jclark.xml.parse.OpenEntity.html#getEncoding()"><b>getEncoding</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.OpenEntity.html#_top_">OpenEntity</a>
<dd> Returns the name of the encoding to be used to convert the entity's
bytes into characters, or null if this should be determined from
the entity itself using XML's rules.
<dt> <a href="com.jclark.xml.tok.TextDecl.html#getEncoding()"><b>getEncoding</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.TextDecl.html#_top_">TextDecl</a>
<dd> Return the encoding specified in the declaration, or null
if no encoding was specified.
<dt> <a href="com.jclark.xml.tok.Encoding.html#getEncoding(java.lang.String)"><b>getEncoding</b></a>(String).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Returns an <code>Encoding</code> corresponding to
the specified IANA character set name.
<dt> <a href="com.jclark.xml.parse.DTD.html#getEntity(byte, java.lang.String)"><b>getEntity</b></a>(byte, String).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> Returns information about the entity with the specified name
and type or null if there was no such entity declared.
<dt> <a href="com.jclark.xml.parse.NotWellFormedException.html#getEntityBase()"><b>getEntityBase</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.NotWellFormedException.html#_top_">NotWellFormedException</a>
<dd> Returns the URL used as the base URL for resolving relative URLs
contained in the entity where the error occurred.
<dt> <a href="com.jclark.xml.parse.ParseLocation.html#getEntityBase()"><b>getEntityBase</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ParseLocation.html#_top_">ParseLocation</a>
<dd> Returns the URL to use as the base URL for resolving relative URLs
contained in the entity being parsed.
<dt> <a href="com.jclark.xml.parse.NotWellFormedException.html#getEntityLocation()"><b>getEntityLocation</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.NotWellFormedException.html#_top_">NotWellFormedException</a>
<dd> Returns the location of the external entity where the
the error occurred in a form suitable for use in an error message.
<dt> <a href="com.jclark.xml.parse.ParseLocation.html#getEntityLocation()"><b>getEntityLocation</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ParseLocation.html#_top_">ParseLocation</a>
<dd> Returns the location of the external entity being
parsed in a form suitable for use in a message.
<dt> <a href="com.jclark.xml.parse.ApplicationException.html#getException()"><b>getException</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.ApplicationException.html#_top_">ApplicationException</a>
<dd> Returns the exception thrown by the <code>Application</code> method.
<dt> <a href="com.jclark.xml.tok.Encoding.html#getFixedBytesPerChar()"><b>getFixedBytesPerChar</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Returns the number of bytes required to represent each <code>char</code>,
or zero if different <code>char</code>s are represented by different
numbers of bytes.
<dt> <a href="com.jclark.xml.tok.PrologParser.html#getGroupLevel()"><b>getGroupLevel</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.parse.StartElementEvent.html#getIdAttributeIndex()"><b>getIdAttributeIndex</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.StartElementEvent.html#_top_">StartElementEvent</a>
<dd> Returns the index of the ID attribute, or -1 if there is no ID
attribute.
<dt> <a href="com.jclark.xml.tok.Encoding.html#getInitialEncoding(byte[], int, int, com.jclark.xml.tok.Token)"><b>getInitialEncoding</b></a>(byte[], int, int, Token).
Static method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Returns an encoding object to be used to start parsing an external entity.
<dt> <a href="com.jclark.xml.parse.OpenEntity.html#getInputStream()"><b>getInputStream</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.OpenEntity.html#_top_">OpenEntity</a>
<dd> Returns an InputStream containing the entity's bytes.
<dt> <a href="com.jclark.xml.parse.ProcessingInstructionEvent.html#getInstruction()"><b>getInstruction</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ProcessingInstructionEvent.html#_top_">ProcessingInstructionEvent</a>
<dd> Returns the part of the processing instruction following the
target.
<dt> <a href="com.jclark.xml.tok.Encoding.html#getInternalEncoding()"><b>getInternalEncoding</b></a>().
Static method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Returns an <code>Encoding</code> object for use with internal entities.
<dt> <a href="com.jclark.xml.tok.PartialCharException.html#getLeadByteIndex()"><b>getLeadByteIndex</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PartialCharException.html#_top_">PartialCharException</a>
<dd> Returns the index of the first byte that is not part of the complete
encoding of a character.
<dt> <a href="com.jclark.xml.tok.ByteToCharConverter.html#getLeadByteType(byte)"><b>getLeadByteType</b></a>(byte).
Method in interface com.jclark.xml.tok.<a href="com.jclark.xml.tok.ByteToCharConverter.html#_top_">ByteToCharConverter</a>
<dd> If the byte <code>b</code> by itself
encodes a character whose Unicode scalar value is <code>c</code>,
returns <code>c</code>.
<dt> <a href="com.jclark.xml.parse.CharacterDataEvent.html#getLength()"><b>getLength</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.CharacterDataEvent.html#_top_">CharacterDataEvent</a>
<dd> Returns the length in chars of the character data.
<dt> <a href="com.jclark.xml.sax.Driver.html#getLength()"><b>getLength</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.CharacterDataEvent.html#getLengthMax()"><b>getLengthMax</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.CharacterDataEvent.html#_top_">CharacterDataEvent</a>
<dd> Returns an upper bound on the length of the character data.
<dt> <a href="com.jclark.xml.sax.Driver.html#getLineNumber()"><b>getLineNumber</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.NotWellFormedException.html#getLineNumber()"><b>getLineNumber</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.NotWellFormedException.html#_top_">NotWellFormedException</a>
<dd> Returns the line number where the error occured.
<dt> <a href="com.jclark.xml.parse.ParseLocation.html#getLineNumber()"><b>getLineNumber</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ParseLocation.html#_top_">ParseLocation</a>
<dd> Returns the line number of the character being parsed
or -1 if no line number is available.
<dt> <a href="com.jclark.xml.tok.Position.html#getLineNumber()"><b>getLineNumber</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Position.html#_top_">Position</a>
<dd> Returns the line number.
<dt> <a href="com.jclark.xml.parse.LocatedEvent.html#getLocation()"><b>getLocation</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.LocatedEvent.html#_top_">LocatedEvent</a>
<dd> Returns the location
of the first character of the markup of the event.
<dt> <a href="com.jclark.xml.parse.OpenEntity.html#getLocation()"><b>getLocation</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.OpenEntity.html#_top_">OpenEntity</a>
<dd> Returns a string representation of the location of the entity
suitable for use in error messages.
<dt> <a href="com.jclark.xml.parse.NotWellFormedException.html#getMessageWithoutLocation()"><b>getMessageWithoutLocation</b></a>().
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.NotWellFormedException.html#_top_">NotWellFormedException</a>
<dd> Returns a description of the error that does not include
the location of the error.
<dt> <a href="com.jclark.xml.tok.Encoding.html#getMinBytesPerChar()"><b>getMinBytesPerChar</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Returns the minimum number of bytes required to represent a single
character in this encoding.
<dt> <a href="com.jclark.xml.parse.EndElementEvent.html#getName()"><b>getName</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.EndElementEvent.html#_top_">EndElementEvent</a>
<dd> Returns the element type name.
<dt> <a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#getName()"><b>getName</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#_top_">MarkupDeclarationEvent</a>
<dd>
<dt> <a href="com.jclark.xml.parse.ProcessingInstructionEvent.html#getName()"><b>getName</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ProcessingInstructionEvent.html#_top_">ProcessingInstructionEvent</a>
<dd> Returns the target of the processing instruction.
<dt> <a href="com.jclark.xml.parse.StartElementEvent.html#getName()"><b>getName</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.StartElementEvent.html#_top_">StartElementEvent</a>
<dd> Returns the element type name.
<dt> <a href="com.jclark.xml.parse.StartEntityReferenceEvent.html#getName()"><b>getName</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.StartEntityReferenceEvent.html#_top_">StartEntityReferenceEvent</a>
<dd> Returns the name of the referenced entity.
<dt> <a href="com.jclark.xml.sax.Driver.html#getName(int)"><b>getName</b></a>(int).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Token.html#getNameEnd()"><b>getNameEnd</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Token.html#_top_">Token</a>
<dd>
<dt> <a href="com.jclark.xml.parse.Entity.html#getNotationName()"><b>getNotationName</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.Entity.html#_top_">Entity</a>
<dd> Returns the notation name of the entity, of null if this is
not an unparsed entity.
<dt> <a href="com.jclark.xml.tok.InvalidTokenException.html#getOffset()"><b>getOffset</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.InvalidTokenException.html#_top_">InvalidTokenException</a>
<dd> Returns the offset after the longest initial subarray
which could start a legal XML token.
<dt> <a href="com.jclark.xml.sax.Driver.html#getPublicId()"><b>getPublicId</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.Entity.html#getPublicId()"><b>getPublicId</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.Entity.html#_top_">Entity</a>
<dd> Returns the public identifier, or null if no public identifier
was specified.
<dt> <a href="com.jclark.xml.tok.Encoding.html#getPublicId(byte[], int, int)"><b>getPublicId</b></a>(byte[], int, int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Checks that a literal contained in the specified byte subarray
is a legal public identifier and returns a string with
the normalized content of the public id.
<dt> <a href="com.jclark.xml.tok.Token.html#getRefChar()"><b>getRefChar</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Token.html#_top_">Token</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Token.html#getRefCharPair(char[], int)"><b>getRefCharPair</b></a>(char[], int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Token.html#_top_">Token</a>
<dd>
<dt> <a href="com.jclark.xml.parse.Entity.html#getReplacementText()"><b>getReplacementText</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.Entity.html#_top_">Entity</a>
<dd> Returns the replacement text or null if this is not an internal
entity.
<dt> <a href="com.jclark.xml.tok.Encoding.html#getSingleByteEncoding(java.lang.String)"><b>getSingleByteEncoding</b></a>(String).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Returns an <code>Encoding</code> for entities encoded with
a single-byte encoding (an encoding in which each byte represents
exactly one character).
<dt> <a href="com.jclark.xml.sax.Driver.html#getSystemId()"><b>getSystemId</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.Entity.html#getSystemId()"><b>getSystemId</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.Entity.html#_top_">Entity</a>
<dd> Returns the system identifier, or null if no system identifier
was specified.
<dt> <a href="com.jclark.xml.tok.Token.html#getTokenEnd()"><b>getTokenEnd</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Token.html#_top_">Token</a>
<dd>
<dt> <a href="com.jclark.xml.tok.ExtensibleTokenException.html#getTokenType()"><b>getTokenType</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.ExtensibleTokenException.html#_top_">ExtensibleTokenException</a>
<dd> Returns the type of token in the byte subarrary.
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#getType()"><b>getType</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd> Returns an integer corresponding to the type of the attribute.
<dt> <a href="com.jclark.xml.tok.InvalidTokenException.html#getType()"><b>getType</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.InvalidTokenException.html#_top_">InvalidTokenException</a>
<dd>
<dt> <a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#getType()"><b>getType</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#_top_">MarkupDeclarationEvent</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#getType(int)"><b>getType</b></a>(int).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#getType(java.lang.String)"><b>getType</b></a>(String).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#getURL()"><b>getURL</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#getValue(int)"><b>getValue</b></a>(int).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#getValue(java.lang.String)"><b>getValue</b></a>(String).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.tok.TextDecl.html#getVersion()"><b>getVersion</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.TextDecl.html#_top_">TextDecl</a>
<dd> Return the version specified in the declaration, or null
if no version was specified.
</dl>
<a name="Thumb-H"></a>
<a name="Thumb-I"></a>
<hr>
<h2>
<a name="Thumb-I"><b> I </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#ID"><b>ID</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#IDREF"><b>IDREF</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#IDREFS"><b>IDREFS</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.tok.InvalidTokenException.html#ILLEGAL_CHAR"><b>ILLEGAL_CHAR</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.InvalidTokenException.html#_top_">InvalidTokenException</a>
<dd> The character or byte at the specified offset is not allowed
at that point.
<dt> <a href="com.jclark.xml.tok.PrologParser.html#INTERNAL_ENTITY"><b>INTERNAL_ENTITY</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.ContentToken.html#isAttributeNormalized(int)"><b>isAttributeNormalized</b></a>(int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.ContentToken.html#_top_">ContentToken</a>
<dd> Returns true if attribute index <code>i</code> does not need to
be normalized.
<dt> <a href="com.jclark.xml.parse.DTD.html#isComplete()"><b>isComplete</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> Returns true if the complete DTD was processed.
<dt> <a href="com.jclark.xml.parse.CharacterDataEvent.html#isReference()"><b>isReference</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.CharacterDataEvent.html#_top_">CharacterDataEvent</a>
<dd> Returns true if the character was a result of a character reference
or a predefined entity reference.
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#isRequired()"><b>isRequired</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd> Returns true if the attribute was #REQUIRED or #FIXED.
<dt> <a href="com.jclark.xml.parse.DTD.html#isStandalone()"><b>isStandalone</b></a>().
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> Returns true if <code>standalone="yes"</code> was specified in the
XML declaration.
<dt> <a href="com.jclark.xml.tok.XmlDecl.html#isStandalone()"><b>isStandalone</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.XmlDecl.html#_top_">XmlDecl</a>
<dd> Returns true if the XML declaration specified
<code>standalone="yes"</code>.
</dl>
<a name="Thumb-J"></a>
<a name="Thumb-K"></a>
<a name="Thumb-L"></a>
<hr>
<h2>
<a name="Thumb-L"><b> L </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.tok.Buffer.html#length()"><b>length</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Buffer.html#_top_">Buffer</a>
<dd>
<dt> <a href="com.jclark.xml.parse.ParserBase.html#locale"><b>locale</b></a>.
Variable in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.ParserBase.html#_top_">ParserBase</a>
<dd>
</dl>
<a name="Thumb-M"></a>
<hr>
<h2>
<a name="Thumb-M"><b> M </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.apps.Doctype.html#main(java.lang.String[])"><b>main</b></a>(String[]).
Static method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd> Writes an equivalent version of the doctype declaration
on the standard output.
<dt> <a href="com.jclark.xml.apps.Normalize.html#main(java.lang.String[])"><b>main</b></a>(String[]).
Static method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Normalize.html#_top_">Normalize</a>
<dd> Writes a normalized version of an XML document to the standard
output.
<dt> <a href="com.jclark.xml.apps.Time.html#main(java.lang.String[])"><b>main</b></a>(String[]).
Static method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Time.html#_top_">Time</a>
<dd> Each of the specified argument is treated as the name
of a file containing an XML document to be parsed.
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#markup(java.lang.String)"><b>markup</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Writes markup.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#markup(java.lang.String)"><b>markup</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Writes markup.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#markup(java.lang.String)"><b>markup</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Writes markup.
<dt> <a href="com.jclark.xml.parse.awt.Application.html#markupDeclaration(com.jclark.xml.parse.MarkupDeclarationEvent)"><b>markupDeclaration</b></a>(MarkupDeclarationEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports a markup declaration.
<dt> <a href="com.jclark.xml.parse.base.Application.html#markupDeclaration(com.jclark.xml.parse.MarkupDeclarationEvent)"><b>markupDeclaration</b></a>(MarkupDeclarationEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports a markup declaration.
<dt> <a href="com.jclark.xml.parse.io.Application.html#markupDeclaration(com.jclark.xml.parse.MarkupDeclarationEvent)"><b>markupDeclaration</b></a>(MarkupDeclarationEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports a markup declaration.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#markupDeclaration(com.jclark.xml.parse.MarkupDeclarationEvent)"><b>markupDeclaration</b></a>(MarkupDeclarationEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#markupDeclaration(com.jclark.xml.parse.MarkupDeclarationEvent)"><b>markupDeclaration</b></a>(MarkupDeclarationEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#markupDeclaration(com.jclark.xml.parse.MarkupDeclarationEvent)"><b>markupDeclaration</b></a>(MarkupDeclarationEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Doctype.html#markupDeclaration(com.jclark.xml.parse.MarkupDeclarationEvent)"><b>markupDeclaration</b></a>(MarkupDeclarationEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Encoding.html#matchesXMLString(byte[], int, int, java.lang.String)"><b>matchesXMLString</b></a>(byte[], int, int, String).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Returns true if the specified byte subarray is equal to the string.
<dt> <a href="com.jclark.xml.parse.Messages.html#Messages()"><b>Messages</b></a>().
Constructor for class com.jclark.xml.parse.<a href="com.jclark.xml.parse.Messages.html#_top_">Messages</a>
<dd>
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#MINIMIZE_EMPTY_ELEMENTS"><b>MINIMIZE_EMPTY_ELEMENTS</b></a>.
Static variable in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#MINIMIZE_EMPTY_ELEMENTS_HTML"><b>MINIMIZE_EMPTY_ELEMENTS_HTML</b></a>.
Static variable in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.parse.ElementType.html#MIXED_CONTENT"><b>MIXED_CONTENT</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ElementType.html#_top_">ElementType</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Encoding.html#movePosition(byte[], int, int, com.jclark.xml.tok.Position)"><b>movePosition</b></a>(byte[], int, int, Position).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Moves a position forward.
</dl>
<a name="Thumb-N"></a>
<hr>
<h2>
<a name="Thumb-N"><b> N </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#NMTOKEN"><b>NMTOKEN</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#NMTOKENS"><b>NMTOKENS</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Normalize.html#Normalize(com.jclark.xml.output.XMLWriter)"><b>Normalize</b></a>(XMLWriter).
Constructor for class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Normalize.html#_top_">Normalize</a>
<dd>
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#NOTATION"><b>NOTATION</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.parse.DTD.html#NOTATION"><b>NOTATION</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> Indicates an entity declared with a NOTATION declaration.
<dt> <a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#NOTATION"><b>NOTATION</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#_top_">MarkupDeclarationEvent</a>
<dd>
</dl>
<a name="Thumb-O"></a>
<hr>
<h2>
<a name="Thumb-O"><b> O </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.sax.Driver.html#open(java.lang.String, java.net.URL, java.lang.String)"><b>open</b></a>(String, URL, String).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.EntityManager.html#open(java.lang.String, java.net.URL, java.lang.String)"><b>open</b></a>(String, URL, String).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.EntityManager.html#_top_">EntityManager</a>
<dd> Opens an external entity.
<dt> <a href="com.jclark.xml.parse.EntityManagerImpl.html#open(java.lang.String, java.net.URL, java.lang.String)"><b>open</b></a>(String, URL, String).
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.EntityManagerImpl.html#_top_">EntityManagerImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.OpenEntity.html#OpenEntity(java.io.InputStream, java.lang.String, java.net.URL)"><b>OpenEntity</b></a>(InputStream, String, URL).
Constructor for class com.jclark.xml.parse.<a href="com.jclark.xml.parse.OpenEntity.html#_top_">OpenEntity</a>
<dd> Creates and initializes an <code>OpenEntity</code> which uses
the encoding specified in the entity.
<dt> <a href="com.jclark.xml.parse.OpenEntity.html#OpenEntity(java.io.InputStream, java.lang.String, java.net.URL, java.lang.String)"><b>OpenEntity</b></a>(InputStream, String, URL, String).
Constructor for class com.jclark.xml.parse.<a href="com.jclark.xml.parse.OpenEntity.html#_top_">OpenEntity</a>
<dd> Creates and initializes an <code>OpenEntity</code> which uses
an externally specified encoding.
<dt> <a href="com.jclark.xml.parse.EntityManagerImpl.html#openFile(java.lang.String)"><b>openFile</b></a>(String).
Static method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.EntityManagerImpl.html#_top_">EntityManagerImpl</a>
<dd> Creates an OpenEntity from a file name.
<dt> <a href="com.jclark.xml.parse.EntityManagerImpl.html#openStandardInput()"><b>openStandardInput</b></a>().
Static method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.EntityManagerImpl.html#_top_">EntityManagerImpl</a>
<dd> Creates an OpenEntity for the standard input.
</dl>
<a name="Thumb-P"></a>
<hr>
<h2>
<a name="Thumb-P"><b> P </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.parse.DTD.html#PARAMETER_ENTITY"><b>PARAMETER_ENTITY</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.DTD.html#_top_">DTD</a>
<dd> Indicates a parameter entity.
<dt> <a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#PARAMETER_ENTITY"><b>PARAMETER_ENTITY</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.MarkupDeclarationEvent.html#_top_">MarkupDeclarationEvent</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#parse(org.xml.sax.InputSource)"><b>parse</b></a>(InputSource).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.DocumentParser.html#parse(com.jclark.xml.parse.OpenEntity, com.jclark.xml.parse.EntityManager, com.jclark.xml.parse.base.Application, java.util.Locale)"><b>parse</b></a>(OpenEntity, EntityManager, Application, Locale).
Static method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.DocumentParser.html#_top_">DocumentParser</a>
<dd> Parses an XML document.
<dt> <a href="com.jclark.xml.sax.Driver.html#parse(java.lang.String)"><b>parse</b></a>(String).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.Parser.html#parseDocument(com.jclark.xml.parse.OpenEntity)"><b>parseDocument</b></a>(OpenEntity).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Parser.html#_top_">Parser</a>
<dd> Parses an XML document.
<dt> <a href="com.jclark.xml.parse.base.Parser.html#parseDocument(com.jclark.xml.parse.OpenEntity)"><b>parseDocument</b></a>(OpenEntity).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Parser.html#_top_">Parser</a>
<dd> Parses an XML document.
<dt> <a href="com.jclark.xml.parse.io.Parser.html#parseDocument(com.jclark.xml.parse.OpenEntity)"><b>parseDocument</b></a>(OpenEntity).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Parser.html#_top_">Parser</a>
<dd> Parses an XML document.
<dt> <a href="com.jclark.xml.parse.awt.ParserImpl.html#parseDocument(com.jclark.xml.parse.OpenEntity)"><b>parseDocument</b></a>(OpenEntity).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ParserImpl.html#_top_">ParserImpl</a>
<dd> Parses an XML document.
<dt> <a href="com.jclark.xml.parse.base.ParserImpl.html#parseDocument(com.jclark.xml.parse.OpenEntity)"><b>parseDocument</b></a>(OpenEntity).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ParserImpl.html#_top_">ParserImpl</a>
<dd> Parses an XML document.
<dt> <a href="com.jclark.xml.parse.io.ParserImpl.html#parseDocument(com.jclark.xml.parse.OpenEntity)"><b>parseDocument</b></a>(OpenEntity).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ParserImpl.html#_top_">ParserImpl</a>
<dd> Parses an XML document.
<dt> <a href="com.jclark.xml.parse.ParserBase.html#ParserBase()"><b>ParserBase</b></a>().
Constructor for class com.jclark.xml.parse.<a href="com.jclark.xml.parse.ParserBase.html#_top_">ParserBase</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.ParserImpl.html#ParserImpl()"><b>ParserImpl</b></a>().
Constructor for class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ParserImpl.html#_top_">ParserImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ParserImpl.html#ParserImpl()"><b>ParserImpl</b></a>().
Constructor for class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ParserImpl.html#_top_">ParserImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ParserImpl.html#ParserImpl()"><b>ParserImpl</b></a>().
Constructor for class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ParserImpl.html#_top_">ParserImpl</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PartialTokenException.html#PartialTokenException()"><b>PartialTokenException</b></a>().
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PartialTokenException.html#_top_">PartialTokenException</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Position.html#Position()"><b>Position</b></a>().
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Position.html#_top_">Position</a>
<dd> Creates a position for the start of an entity: the line number is
1 and the column number is 0.
<dt> <a href="com.jclark.xml.parse.awt.Application.html#processingInstruction(com.jclark.xml.parse.ProcessingInstructionEvent)"><b>processingInstruction</b></a>(ProcessingInstructionEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports a processing instruction.
<dt> <a href="com.jclark.xml.parse.base.Application.html#processingInstruction(com.jclark.xml.parse.ProcessingInstructionEvent)"><b>processingInstruction</b></a>(ProcessingInstructionEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports a processing instruction.
<dt> <a href="com.jclark.xml.parse.io.Application.html#processingInstruction(com.jclark.xml.parse.ProcessingInstructionEvent)"><b>processingInstruction</b></a>(ProcessingInstructionEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports a processing instruction.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#processingInstruction(com.jclark.xml.parse.ProcessingInstructionEvent)"><b>processingInstruction</b></a>(ProcessingInstructionEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#processingInstruction(com.jclark.xml.parse.ProcessingInstructionEvent)"><b>processingInstruction</b></a>(ProcessingInstructionEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#processingInstruction(com.jclark.xml.parse.ProcessingInstructionEvent)"><b>processingInstruction</b></a>(ProcessingInstructionEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Doctype.html#processingInstruction(com.jclark.xml.parse.ProcessingInstructionEvent)"><b>processingInstruction</b></a>(ProcessingInstructionEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#processingInstruction(com.jclark.xml.parse.ProcessingInstructionEvent)"><b>processingInstruction</b></a>(ProcessingInstructionEvent).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Normalize.html#processingInstruction(com.jclark.xml.parse.ProcessingInstructionEvent)"><b>processingInstruction</b></a>(ProcessingInstructionEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Normalize.html#_top_">Normalize</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#processingInstruction(java.lang.String, java.lang.String)"><b>processingInstruction</b></a>(String, String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Writes a processing instruction.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#processingInstruction(java.lang.String, java.lang.String)"><b>processingInstruction</b></a>(String, String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Writes a processing instruction.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#processingInstruction(java.lang.String, java.lang.String)"><b>processingInstruction</b></a>(String, String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Writes a processing instruction.
<dt> <a href="com.jclark.xml.tok.PrologParser.html#PROLOG"><b>PROLOG</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologParser.html#PrologParser(byte)"><b>PrologParser</b></a>(byte).
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologParser.html#_top_">PrologParser</a>
<dd>
<dt> <a href="com.jclark.xml.tok.PrologSyntaxException.html#PrologSyntaxException()"><b>PrologSyntaxException</b></a>().
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.PrologSyntaxException.html#_top_">PrologSyntaxException</a>
<dd>
</dl>
<a name="Thumb-Q"></a>
<a name="Thumb-R"></a>
<hr>
<h2>
<a name="Thumb-R"><b> R </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.sax.ReaderInputStream.html#read()"><b>read</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.ReaderInputStream.html#_top_">ReaderInputStream</a>
<dd>
<dt> <a href="com.jclark.xml.sax.ReaderInputStream.html#read(byte[], int, int)"><b>read</b></a>(byte[], int, int).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.ReaderInputStream.html#_top_">ReaderInputStream</a>
<dd>
<dt> <a href="com.jclark.xml.sax.ReaderInputStream.html#ReaderInputStream(java.io.Reader)"><b>ReaderInputStream</b></a>(Reader).
Constructor for class com.jclark.xml.sax.<a href="com.jclark.xml.sax.ReaderInputStream.html#_top_">ReaderInputStream</a>
<dd>
</dl>
<a name="Thumb-S"></a>
<hr>
<h2>
<a name="Thumb-S"><b> S </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.parse.awt.Parser.html#setApplication(com.jclark.xml.parse.awt.Application)"><b>setApplication</b></a>(Application).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Parser.html#_top_">Parser</a>
<dd> Sets the <code>Application</code>, which will receive information
about the XML document.
<dt> <a href="com.jclark.xml.parse.base.Parser.html#setApplication(com.jclark.xml.parse.base.Application)"><b>setApplication</b></a>(Application).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Parser.html#_top_">Parser</a>
<dd> Sets the <code>Application</code>, which will receive information
about the XML document.
<dt> <a href="com.jclark.xml.parse.io.Parser.html#setApplication(com.jclark.xml.parse.io.Application)"><b>setApplication</b></a>(Application).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Parser.html#_top_">Parser</a>
<dd> Sets the <code>Application</code>, which will receive information
about the XML document.
<dt> <a href="com.jclark.xml.parse.awt.ParserImpl.html#setApplication(com.jclark.xml.parse.awt.Application)"><b>setApplication</b></a>(Application).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ParserImpl.html#_top_">ParserImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ParserImpl.html#setApplication(com.jclark.xml.parse.base.Application)"><b>setApplication</b></a>(Application).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ParserImpl.html#_top_">ParserImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ParserImpl.html#setApplication(com.jclark.xml.parse.io.Application)"><b>setApplication</b></a>(Application).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ParserImpl.html#_top_">ParserImpl</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#setDocumentHandler(org.xml.sax.DocumentHandler)"><b>setDocumentHandler</b></a>(DocumentHandler).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#setDTDHandler(org.xml.sax.DTDHandler)"><b>setDTDHandler</b></a>(DTDHandler).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.tok.StringConversionCache.html#setEncoding(com.jclark.xml.tok.Encoding)"><b>setEncoding</b></a>(Encoding).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.StringConversionCache.html#_top_">StringConversionCache</a>
<dd> Changes the encoding for the cache.
<dt> <a href="com.jclark.xml.parse.awt.Parser.html#setEntityManager(com.jclark.xml.parse.EntityManager)"><b>setEntityManager</b></a>(EntityManager).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Parser.html#_top_">Parser</a>
<dd> Sets the <code>EntityManager</code> which will be used
to access external entities referenced in the document.
<dt> <a href="com.jclark.xml.parse.base.Parser.html#setEntityManager(com.jclark.xml.parse.EntityManager)"><b>setEntityManager</b></a>(EntityManager).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Parser.html#_top_">Parser</a>
<dd> Sets the <code>EntityManager</code> which will be used
to access external entities referenced in the document.
<dt> <a href="com.jclark.xml.parse.io.Parser.html#setEntityManager(com.jclark.xml.parse.EntityManager)"><b>setEntityManager</b></a>(EntityManager).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Parser.html#_top_">Parser</a>
<dd> Sets the <code>EntityManager</code> which will be used
to access external entities referenced in the document.
<dt> <a href="com.jclark.xml.parse.ParserBase.html#setEntityManager(com.jclark.xml.parse.EntityManager)"><b>setEntityManager</b></a>(EntityManager).
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.ParserBase.html#_top_">ParserBase</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#setEntityResolver(org.xml.sax.EntityResolver)"><b>setEntityResolver</b></a>(EntityResolver).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#setErrorHandler(org.xml.sax.ErrorHandler)"><b>setErrorHandler</b></a>(ErrorHandler).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#setLocale(java.util.Locale)"><b>setLocale</b></a>(Locale).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.Parser.html#setLocale(java.util.Locale)"><b>setLocale</b></a>(Locale).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Parser.html#_top_">Parser</a>
<dd> Sets the locale to be used for error messages.
<dt> <a href="com.jclark.xml.parse.base.Parser.html#setLocale(java.util.Locale)"><b>setLocale</b></a>(Locale).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Parser.html#_top_">Parser</a>
<dd> Sets the locale to be used for error messages.
<dt> <a href="com.jclark.xml.parse.io.Parser.html#setLocale(java.util.Locale)"><b>setLocale</b></a>(Locale).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Parser.html#_top_">Parser</a>
<dd> Sets the locale to be used for error messages.
<dt> <a href="com.jclark.xml.parse.ParserBase.html#setLocale(java.util.Locale)"><b>setLocale</b></a>(Locale).
Method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.ParserBase.html#_top_">ParserBase</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Token.html#setNameEnd(int)"><b>setNameEnd</b></a>(int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Token.html#_top_">Token</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Token.html#setTokenEnd(int)"><b>setTokenEnd</b></a>(int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Token.html#_top_">Token</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Encoding.html#skipIgnoreSect(byte[], int, int)"><b>skipIgnoreSect</b></a>(byte[], int, int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Skips over an ignored conditional section.
<dt> <a href="com.jclark.xml.tok.Encoding.html#skipS(byte[], int, int)"><b>skipS</b></a>(byte[], int, int).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Skips over XML whitespace characters at the start of the specified
subarray.
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#startAttribute(java.lang.String)"><b>startAttribute</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Starts an attribute.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#startAttribute(java.lang.String)"><b>startAttribute</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Starts an attribute.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#startAttribute(java.lang.String)"><b>startAttribute</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Starts an attribute.
<dt> <a href="com.jclark.xml.parse.awt.Application.html#startCdataSection(com.jclark.xml.parse.StartCdataSectionEvent)"><b>startCdataSection</b></a>(StartCdataSectionEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the start of a CDATA section.
<dt> <a href="com.jclark.xml.parse.base.Application.html#startCdataSection(com.jclark.xml.parse.StartCdataSectionEvent)"><b>startCdataSection</b></a>(StartCdataSectionEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the start of a CDATA section.
<dt> <a href="com.jclark.xml.parse.io.Application.html#startCdataSection(com.jclark.xml.parse.StartCdataSectionEvent)"><b>startCdataSection</b></a>(StartCdataSectionEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the start of a CDATA section.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#startCdataSection(com.jclark.xml.parse.StartCdataSectionEvent)"><b>startCdataSection</b></a>(StartCdataSectionEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#startCdataSection(com.jclark.xml.parse.StartCdataSectionEvent)"><b>startCdataSection</b></a>(StartCdataSectionEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#startCdataSection(com.jclark.xml.parse.StartCdataSectionEvent)"><b>startCdataSection</b></a>(StartCdataSectionEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.Application.html#startDocument()"><b>startDocument</b></a>().
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the start of the document.
<dt> <a href="com.jclark.xml.parse.base.Application.html#startDocument()"><b>startDocument</b></a>().
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the start of the document.
<dt> <a href="com.jclark.xml.parse.io.Application.html#startDocument()"><b>startDocument</b></a>().
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the start of the document.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#startDocument()"><b>startDocument</b></a>().
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#startDocument()"><b>startDocument</b></a>().
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#startDocument()"><b>startDocument</b></a>().
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#startDocument()"><b>startDocument</b></a>().
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.Application.html#startDocumentTypeDeclaration(com.jclark.xml.parse.StartDocumentTypeDeclarationEvent)"><b>startDocumentTypeDeclaration</b></a>(StartDocumentTypeDeclarationEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the start of the document type declaration.
<dt> <a href="com.jclark.xml.parse.base.Application.html#startDocumentTypeDeclaration(com.jclark.xml.parse.StartDocumentTypeDeclarationEvent)"><b>startDocumentTypeDeclaration</b></a>(StartDocumentTypeDeclarationEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the start of the document type declaration.
<dt> <a href="com.jclark.xml.parse.io.Application.html#startDocumentTypeDeclaration(com.jclark.xml.parse.StartDocumentTypeDeclarationEvent)"><b>startDocumentTypeDeclaration</b></a>(StartDocumentTypeDeclarationEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the start of the document type declaration.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#startDocumentTypeDeclaration(com.jclark.xml.parse.StartDocumentTypeDeclarationEvent)"><b>startDocumentTypeDeclaration</b></a>(StartDocumentTypeDeclarationEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#startDocumentTypeDeclaration(com.jclark.xml.parse.StartDocumentTypeDeclarationEvent)"><b>startDocumentTypeDeclaration</b></a>(StartDocumentTypeDeclarationEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#startDocumentTypeDeclaration(com.jclark.xml.parse.StartDocumentTypeDeclarationEvent)"><b>startDocumentTypeDeclaration</b></a>(StartDocumentTypeDeclarationEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Doctype.html#startDocumentTypeDeclaration(com.jclark.xml.parse.StartDocumentTypeDeclarationEvent)"><b>startDocumentTypeDeclaration</b></a>(StartDocumentTypeDeclarationEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.parse.awt.Application.html#startElement(com.jclark.xml.parse.StartElementEvent)"><b>startElement</b></a>(StartElementEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the start of an element.
<dt> <a href="com.jclark.xml.parse.base.Application.html#startElement(com.jclark.xml.parse.StartElementEvent)"><b>startElement</b></a>(StartElementEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the start of an element.
<dt> <a href="com.jclark.xml.parse.io.Application.html#startElement(com.jclark.xml.parse.StartElementEvent)"><b>startElement</b></a>(StartElementEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the start of an element.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#startElement(com.jclark.xml.parse.StartElementEvent)"><b>startElement</b></a>(StartElementEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#startElement(com.jclark.xml.parse.StartElementEvent)"><b>startElement</b></a>(StartElementEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#startElement(com.jclark.xml.parse.StartElementEvent)"><b>startElement</b></a>(StartElementEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.sax.Driver.html#startElement(com.jclark.xml.parse.StartElementEvent)"><b>startElement</b></a>(StartElementEvent).
Method in class com.jclark.xml.sax.<a href="com.jclark.xml.sax.Driver.html#_top_">Driver</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Normalize.html#startElement(com.jclark.xml.parse.StartElementEvent)"><b>startElement</b></a>(StartElementEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Normalize.html#_top_">Normalize</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#startElement(java.lang.String)"><b>startElement</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Starts an element.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#startElement(java.lang.String)"><b>startElement</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Starts an element.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#startElement(java.lang.String)"><b>startElement</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Starts an element.
<dt> <a href="com.jclark.xml.parse.awt.Application.html#startEntityReference(com.jclark.xml.parse.StartEntityReferenceEvent)"><b>startEntityReference</b></a>(StartEntityReferenceEvent).
Method in interface com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.Application.html#_top_">Application</a>
<dd> Reports the start of an entity reference.
<dt> <a href="com.jclark.xml.parse.base.Application.html#startEntityReference(com.jclark.xml.parse.StartEntityReferenceEvent)"><b>startEntityReference</b></a>(StartEntityReferenceEvent).
Method in interface com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.Application.html#_top_">Application</a>
<dd> Reports the start of an entity reference.
<dt> <a href="com.jclark.xml.parse.io.Application.html#startEntityReference(com.jclark.xml.parse.StartEntityReferenceEvent)"><b>startEntityReference</b></a>(StartEntityReferenceEvent).
Method in interface com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.Application.html#_top_">Application</a>
<dd> Reports the start of an entity reference.
<dt> <a href="com.jclark.xml.parse.awt.ApplicationImpl.html#startEntityReference(com.jclark.xml.parse.StartEntityReferenceEvent)"><b>startEntityReference</b></a>(StartEntityReferenceEvent).
Method in class com.jclark.xml.parse.awt.<a href="com.jclark.xml.parse.awt.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.base.ApplicationImpl.html#startEntityReference(com.jclark.xml.parse.StartEntityReferenceEvent)"><b>startEntityReference</b></a>(StartEntityReferenceEvent).
Method in class com.jclark.xml.parse.base.<a href="com.jclark.xml.parse.base.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.parse.io.ApplicationImpl.html#startEntityReference(com.jclark.xml.parse.StartEntityReferenceEvent)"><b>startEntityReference</b></a>(StartEntityReferenceEvent).
Method in class com.jclark.xml.parse.io.<a href="com.jclark.xml.parse.io.ApplicationImpl.html#_top_">ApplicationImpl</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Doctype.html#startEntityReference(com.jclark.xml.parse.StartEntityReferenceEvent)"><b>startEntityReference</b></a>(StartEntityReferenceEvent).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#startReplacementText()"><b>startReplacementText</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd> Starts the replacement text for an internal entity.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#startReplacementText()"><b>startReplacementText</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Starts the replacement text for an internal entity.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#startReplacementText()"><b>startReplacementText</b></a>().
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd> Starts the replacement text for an internal entity.
<dt> <a href="com.jclark.xml.Version.html#string"><b>string</b></a>.
Static variable in interface com.jclark.xml.<a href="com.jclark.xml.Version.html#_top_">Version</a>
<dd> A string specifying the XP version.
<dt> <a href="com.jclark.xml.tok.StringConversionCache.html#StringConversionCache(com.jclark.xml.tok.Encoding)"><b>StringConversionCache</b></a>(Encoding).
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.StringConversionCache.html#_top_">StringConversionCache</a>
<dd> Create a cache of the default size for converting byte subarrays
in the specified encoding into Strings.
<dt> <a href="com.jclark.xml.tok.StringConversionCache.html#StringConversionCache(com.jclark.xml.tok.Encoding, int)"><b>StringConversionCache</b></a>(Encoding, int).
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.StringConversionCache.html#_top_">StringConversionCache</a>
<dd> Create a cache of the specified size
for converting byte subarrays in the specified encoding
into Strings.
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#SyncXMLWriter(com.jclark.xml.output.XMLWriter)"><b>SyncXMLWriter</b></a>(XMLWriter).
Constructor for class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd>
</dl>
<a name="Thumb-T"></a>
<hr>
<h2>
<a name="Thumb-T"><b> T </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.tok.TextDecl.html#TextDecl(com.jclark.xml.tok.Encoding, byte[], int, int)"><b>TextDecl</b></a>(Encoding, byte[], int, int).
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.TextDecl.html#_top_">TextDecl</a>
<dd> Creates a <code>TextDecl</code> from the specified byte subarray.
<dt> <a href="com.jclark.xml.apps.Time.html#Time()"><b>Time</b></a>().
Constructor for class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Time.html#_top_">Time</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_ATTRIBUTE_VALUE_S"><b>TOK_ATTRIBUTE_VALUE_S</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a white space character in an attribute value,
excluding white space characters that are part of line boundaries.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_CDATA_SECT_CLOSE"><b>TOK_CDATA_SECT_CLOSE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents the end of a CDATA section <code>]]></code>.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_CDATA_SECT_OPEN"><b>TOK_CDATA_SECT_OPEN</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents the start of a CDATA section <code><![CDATA[</code>.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_CHAR_PAIR_REF"><b>TOK_CHAR_PAIR_REF</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a numeric character reference (decimal or hexadecimal),
when the referenced character is greater than 0xFFFF and so is
represented by a pair of chars.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_CHAR_REF"><b>TOK_CHAR_REF</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a numeric character reference (decimal or hexadecimal),
when the referenced character is less than or equal to 0xFFFF
and so is represented by a single char.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_CLOSE_BRACKET"><b>TOK_CLOSE_BRACKET</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code>]</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_CLOSE_PAREN"><b>TOK_CLOSE_PAREN</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a <code>)</code> in the prolog that is not
followed immediately by any of
<code>*</code>, <code>+</code> or <code>?</code>.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_CLOSE_PAREN_ASTERISK"><b>TOK_CLOSE_PAREN_ASTERISK</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code>)*</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_CLOSE_PAREN_PLUS"><b>TOK_CLOSE_PAREN_PLUS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code>)+</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_CLOSE_PAREN_QUESTION"><b>TOK_CLOSE_PAREN_QUESTION</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code>)?</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_COMMA"><b>TOK_COMMA</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code>,</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_COMMENT"><b>TOK_COMMENT</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a comment <code><!-- comment --></code>.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_COND_SECT_CLOSE"><b>TOK_COND_SECT_CLOSE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code>]]></code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_COND_SECT_OPEN"><b>TOK_COND_SECT_OPEN</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code><![</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_DATA_CHARS"><b>TOK_DATA_CHARS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents one or more characters of data.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_DATA_NEWLINE"><b>TOK_DATA_NEWLINE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a newline (CR, LF or CR followed by LF) in data.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_DECL_CLOSE"><b>TOK_DECL_CLOSE</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code>></code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_DECL_OPEN"><b>TOK_DECL_OPEN</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code><!NAME</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_EMPTY_ELEMENT_NO_ATTS"><b>TOK_EMPTY_ELEMENT_NO_ATTS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents an empty element tag <code><name/></code>,
that doesn't have any attribute specifications.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_EMPTY_ELEMENT_WITH_ATTS"><b>TOK_EMPTY_ELEMENT_WITH_ATTS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents an empty element tag <code><name att="val"/></code>,
that contains one or more attribute specifications.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_END_TAG"><b>TOK_END_TAG</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a complete end-tag <code></name></code>.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_ENTITY_REF"><b>TOK_ENTITY_REF</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a general entity reference.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_LITERAL"><b>TOK_LITERAL</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a literal (EntityValue, AttValue, SystemLiteral or
PubidLiteral).
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_MAGIC_ENTITY_REF"><b>TOK_MAGIC_ENTITY_REF</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a general entity reference to a one of the 5 predefined
entities <code>amp</code>, <code>lt</code>, <code>gt</code>,
<code>quot</code>, <code>apos</code>.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_NAME"><b>TOK_NAME</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a name in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_NAME_ASTERISK"><b>TOK_NAME_ASTERISK</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a name followed immediately by <code>*</code>.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_NAME_PLUS"><b>TOK_NAME_PLUS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a name followed immediately by <code>+</code>.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_NAME_QUESTION"><b>TOK_NAME_QUESTION</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a name followed immediately by <code>?</code>.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_NMTOKEN"><b>TOK_NMTOKEN</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a name token in the prolog that is not a name.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_OPEN_BRACKET"><b>TOK_OPEN_BRACKET</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code>[</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_OPEN_PAREN"><b>TOK_OPEN_PAREN</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a <code>(</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_OR"><b>TOK_OR</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code>|</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_PARAM_ENTITY_REF"><b>TOK_PARAM_ENTITY_REF</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a parameter entity reference in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_PERCENT"><b>TOK_PERCENT</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a <code>%</code> in the prolog that does not start
a parameter entity reference.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_PI"><b>TOK_PI</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a processing instruction.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_POUND_NAME"><b>TOK_POUND_NAME</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents <code>#NAME</code> in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_PROLOG_S"><b>TOK_PROLOG_S</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents whitespace in the prolog.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_START_TAG_NO_ATTS"><b>TOK_START_TAG_NO_ATTS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a complete start-tag <code><name></code>,
that doesn't have any attribute specifications.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_START_TAG_WITH_ATTS"><b>TOK_START_TAG_WITH_ATTS</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents a complete start-tag <code><name att="val"></code>,
that contains one or more attribute specifications.
<dt> <a href="com.jclark.xml.tok.Encoding.html#TOK_XML_DECL"><b>TOK_XML_DECL</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Represents an XML declaration or text declaration (a processing
instruction whose target is <code>xml</code>).
<dt> <a href="com.jclark.xml.tok.Token.html#Token()"><b>Token</b></a>().
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Token.html#_top_">Token</a>
<dd>
<dt> <a href="com.jclark.xml.tok.TokenException.html#TokenException()"><b>TokenException</b></a>().
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.TokenException.html#_top_">TokenException</a>
<dd>
<dt> <a href="com.jclark.xml.tok.Encoding.html#tokenizeAttributeValue(byte[], int, int, com.jclark.xml.tok.Token)"><b>tokenizeAttributeValue</b></a>(byte[], int, int, Token).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Scans the first token of a byte subarrary that contains part of
literal attribute value.
<dt> <a href="com.jclark.xml.tok.Encoding.html#tokenizeCdataSection(byte[], int, int, com.jclark.xml.tok.Token)"><b>tokenizeCdataSection</b></a>(byte[], int, int, Token).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Scans the first token of a byte subarrary that starts with the
content of a CDATA section.
<dt> <a href="com.jclark.xml.tok.Encoding.html#tokenizeContent(byte[], int, int, com.jclark.xml.tok.ContentToken)"><b>tokenizeContent</b></a>(byte[], int, int, ContentToken).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Scans the first token of a byte subarrary that contains content.
<dt> <a href="com.jclark.xml.tok.Encoding.html#tokenizeEntityValue(byte[], int, int, com.jclark.xml.tok.Token)"><b>tokenizeEntityValue</b></a>(byte[], int, int, Token).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Scans the first token of a byte subarrary that contains part of
literal entity value.
<dt> <a href="com.jclark.xml.tok.Encoding.html#tokenizeProlog(byte[], int, int, com.jclark.xml.tok.Token)"><b>tokenizeProlog</b></a>(byte[], int, int, Token).
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Encoding.html#_top_">Encoding</a>
<dd> Scans the first token of a byte subarray that contains part of a
prolog.
<dt> <a href="com.jclark.xml.tok.Buffer.html#toString()"><b>toString</b></a>().
Method in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.Buffer.html#_top_">Buffer</a>
<dd>
</dl>
<a name="Thumb-U"></a>
<hr>
<h2>
<a name="Thumb-U"><b> U </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.parse.AttributeDefinition.html#UNDECLARED"><b>UNDECLARED</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.AttributeDefinition.html#_top_">AttributeDefinition</a>
<dd>
<dt> <a href="com.jclark.xml.parse.ElementType.html#UNDECLARED_CONTENT"><b>UNDECLARED_CONTENT</b></a>.
Static variable in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.ElementType.html#_top_">ElementType</a>
<dd>
<dt> <a href="com.jclark.xml.parse.EntityManagerImpl.html#userDirURL()"><b>userDirURL</b></a>().
Static method in class com.jclark.xml.parse.<a href="com.jclark.xml.parse.EntityManagerImpl.html#_top_">EntityManagerImpl</a>
<dd> Generates a URL for the current working directory.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#UTF8XMLWriter(java.io.OutputStream)"><b>UTF8XMLWriter</b></a>(OutputStream).
Constructor for class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Create an XML writer that will write in UTF-8 to the specified
OutputStream with the default options.
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#UTF8XMLWriter(java.io.OutputStream, int)"><b>UTF8XMLWriter</b></a>(OutputStream, int).
Constructor for class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd> Create an XML writer that will write in UTF-8 to the specified
OutputStream with the specified options.
</dl>
<a name="Thumb-V"></a>
<a name="Thumb-W"></a>
<hr>
<h2>
<a name="Thumb-W"><b> W </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#write(char)"><b>write</b></a>(char).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#write(char[], int, int)"><b>write</b></a>(char[], int, int).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#write(char[], int, int)"><b>write</b></a>(char[], int, int).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#write(int)"><b>write</b></a>(int).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#write(java.lang.String)"><b>write</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#write(java.lang.String)"><b>write</b></a>(String).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.output.SyncXMLWriter.html#write(java.lang.String, int, int)"><b>write</b></a>(String, int, int).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.SyncXMLWriter.html#_top_">SyncXMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#write(java.lang.String, int, int)"><b>write</b></a>(String, int, int).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Doctype.html#writeAttributeDef(com.jclark.xml.parse.DTD, java.lang.String, java.lang.String)"><b>writeAttributeDef</b></a>(DTD, String, String).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.parse.CharacterDataEvent.html#writeChars(java.io.Writer)"><b>writeChars</b></a>(Writer).
Method in interface com.jclark.xml.parse.<a href="com.jclark.xml.parse.CharacterDataEvent.html#_top_">CharacterDataEvent</a>
<dd> Writes the character data to the specified <code>Writer</code>.
<dt> <a href="com.jclark.xml.apps.Doctype.html#writeElementDecl(com.jclark.xml.parse.DTD, java.lang.String)"><b>writeElementDecl</b></a>(DTD, String).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.apps.Doctype.html#writeEntityDecl(com.jclark.xml.parse.DTD, byte, java.lang.String)"><b>writeEntityDecl</b></a>(DTD, byte, String).
Method in class com.jclark.xml.apps.<a href="com.jclark.xml.apps.Doctype.html#_top_">Doctype</a>
<dd>
<dt> <a href="com.jclark.xml.output.UTF8XMLWriter.html#writeUTF8(byte[], int, int)"><b>writeUTF8</b></a>(byte[], int, int).
Method in class com.jclark.xml.output.<a href="com.jclark.xml.output.UTF8XMLWriter.html#_top_">UTF8XMLWriter</a>
<dd>
</dl>
<a name="Thumb-X"></a>
<hr>
<h2>
<a name="Thumb-X"><b> X </b></a>
</h2>
<dl>
<dt> <a href="com.jclark.xml.tok.InvalidTokenException.html#XML_TARGET"><b>XML_TARGET</b></a>.
Static variable in class com.jclark.xml.tok.<a href="com.jclark.xml.tok.InvalidTokenException.html#_top_">InvalidTokenException</a>
<dd> The target of a processing instruction was XML.
<dt> <a href="com.jclark.xml.tok.XmlDecl.html#XmlDecl(com.jclark.xml.tok.Encoding, byte[], int, int)"><b>XmlDecl</b></a>(Encoding, byte[], int, int).
Constructor for class com.jclark.xml.tok.<a href="com.jclark.xml.tok.XmlDecl.html#_top_">XmlDecl</a>
<dd> Creates an <code>XMLDecl</code> from the specified byte subarray.
<dt> <a href="com.jclark.xml.output.XMLWriter.html#XMLWriter(java.lang.Object)"><b>XMLWriter</b></a>(Object).
Constructor for class com.jclark.xml.output.<a href="com.jclark.xml.output.XMLWriter.html#_top_">XMLWriter</a>
<dd>
</dl>
<a name="Thumb-Y"></a>
</body>
</html>
|