This file is indexed.

/usr/share/doc/libnekohtml-java/api/org/cyberneko/html/HTMLScanner.html is in libnekohtml-java-doc 1.9.22-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_91) on Tue Jan 19 23:10:43 UTC 2016 -->
<title>HTMLScanner (NekoHTML 1.9.22 Implementation)</title>
<meta name="date" content="2016-01-19">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="HTMLScanner (NekoHTML 1.9.22 Implementation)";
    }
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!--   -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/HTMLScanner.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/cyberneko/html/HTMLEventInfo.SynthesizedItem.html" title="class in org.cyberneko.html"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/cyberneko/html/HTMLScanner.ContentScanner.html" title="class in org.cyberneko.html"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/cyberneko/html/HTMLScanner.html" target="_top">Frames</a></li>
<li><a href="HTMLScanner.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.cyberneko.html</div>
<h2 title="Class HTMLScanner" class="title">Class HTMLScanner</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.cyberneko.html.HTMLScanner</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd>org.apache.xerces.xni.parser.XMLComponent, org.apache.xerces.xni.parser.XMLDocumentScanner, org.apache.xerces.xni.parser.XMLDocumentSource, org.apache.xerces.xni.XMLLocator, <a href="../../../org/cyberneko/html/HTMLComponent.html" title="interface in org.cyberneko.html">HTMLComponent</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">HTMLScanner</span>
extends java.lang.Object
implements org.apache.xerces.xni.parser.XMLDocumentScanner, org.apache.xerces.xni.XMLLocator, <a href="../../../org/cyberneko/html/HTMLComponent.html" title="interface in org.cyberneko.html">HTMLComponent</a></pre>
<div class="block">A simple HTML scanner. This scanner makes no attempt to balance tags
 or fix other problems in the source document &mdash; it just scans what 
 it can and generates XNI document "events", ignoring errors of all 
 kinds.
 <p>
 This component recognizes the following features:
 <ul>
 <li>http://cyberneko.org/html/features/augmentations
 <li>http://cyberneko.org/html/features/report-errors
 <li>http://apache.org/xml/features/scanner/notify-char-refs
 <li>http://apache.org/xml/features/scanner/notify-builtin-refs
 <li>http://cyberneko.org/html/features/scanner/notify-builtin-refs
 <li>http://cyberneko.org/html/features/scanner/fix-mswindows-refs
 <li>http://cyberneko.org/html/features/scanner/script/strip-cdata-delims
 <li>http://cyberneko.org/html/features/scanner/script/strip-comment-delims
 <li>http://cyberneko.org/html/features/scanner/style/strip-cdata-delims
 <li>http://cyberneko.org/html/features/scanner/style/strip-comment-delims
 <li>http://cyberneko.org/html/features/scanner/ignore-specified-charset
 <li>http://cyberneko.org/html/features/scanner/cdata-sections
 <li>http://cyberneko.org/html/features/override-doctype
 <li>http://cyberneko.org/html/features/insert-doctype
 <li>http://cyberneko.org/html/features/parse-noscript-content
 <li>http://cyberneko.org/html/features/scanner/allow-selfclosing-iframe
 <li>http://cyberneko.org/html/features/scanner/allow-selfclosing-tags
 </ul>
 <p>
 This component recognizes the following properties:
 <ul>
 <li>http://cyberneko.org/html/properties/names/elems
 <li>http://cyberneko.org/html/properties/names/attrs
 <li>http://cyberneko.org/html/properties/default-encoding
 <li>http://cyberneko.org/html/properties/error-reporter
 <li>http://cyberneko.org/html/properties/doctype/pubid
 <li>http://cyberneko.org/html/properties/doctype/sysid
 </ul></div>
<dl><dt><span class="strong">Version:</span></dt>
  <dd>$Id: HTMLScanner.java,v 1.19 2005/06/14 05:52:37 andyc Exp $</dd>
<dt><span class="strong">Author:</span></dt>
  <dd>Andy Clark, Marc Guillemot, Ahmed Ashour</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/cyberneko/html/HTMLElements.html" title="class in org.cyberneko.html"><code>HTMLElements</code></a>, 
<a href="../../../org/cyberneko/html/HTMLEntities.html" title="class in org.cyberneko.html"><code>HTMLEntities</code></a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!--   -->
</a>
<h3>Nested Class Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.ContentScanner.html" title="class in org.cyberneko.html">HTMLScanner.ContentScanner</a></strong></code>
<div class="block">The primary HTML document scanner.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.CurrentEntity.html" title="class in org.cyberneko.html">HTMLScanner.CurrentEntity</a></strong></code>
<div class="block">Current entity.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.LocationItem.html" title="class in org.cyberneko.html">HTMLScanner.LocationItem</a></strong></code>
<div class="block">Location infoset item.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.PlaybackInputStream.html" title="class in org.cyberneko.html">HTMLScanner.PlaybackInputStream</a></strong></code>
<div class="block">A playback input stream.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static interface&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.Scanner.html" title="interface in org.cyberneko.html">HTMLScanner.Scanner</a></strong></code>
<div class="block">Basic scanner interface.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.SpecialScanner.html" title="class in org.cyberneko.html">HTMLScanner.SpecialScanner</a></strong></code>
<div class="block">Special scanner used for elements whose content needs to be scanned 
 as plain text, ignoring markup such as elements and entity references.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#ALLOW_SELFCLOSING_IFRAME">ALLOW_SELFCLOSING_IFRAME</a></strong></code>
<div class="block">Allows self closing &lt;iframe/&gt; tag</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#ALLOW_SELFCLOSING_TAGS">ALLOW_SELFCLOSING_TAGS</a></strong></code>
<div class="block">Allows self closing tags e.g.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#AUGMENTATIONS">AUGMENTATIONS</a></strong></code>
<div class="block">Include infoset augmentations.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#CDATA_SECTIONS">CDATA_SECTIONS</a></strong></code>
<div class="block">Scan CDATA sections.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#DEBUG_CALLBACKS">DEBUG_CALLBACKS</a></strong></code>
<div class="block">Set to true to debug callbacks.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#DEFAULT_BUFFER_SIZE">DEFAULT_BUFFER_SIZE</a></strong></code>
<div class="block">Default buffer size.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#DEFAULT_ENCODING">DEFAULT_ENCODING</a></strong></code>
<div class="block">Default encoding.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#DOCTYPE_PUBID">DOCTYPE_PUBID</a></strong></code>
<div class="block">Doctype declaration public identifier.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#DOCTYPE_SYSID">DOCTYPE_SYSID</a></strong></code>
<div class="block">Doctype declaration system identifier.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#ERROR_REPORTER">ERROR_REPORTER</a></strong></code>
<div class="block">Error reporter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fAllowSelfclosingIframe">fAllowSelfclosingIframe</a></strong></code>
<div class="block">Allows self closing iframe tags.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fAllowSelfclosingTags">fAllowSelfclosingTags</a></strong></code>
<div class="block">Allows self closing tags.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fAugmentations">fAugmentations</a></strong></code>
<div class="block">Augmentations.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fBeginCharacterOffset">fBeginCharacterOffset</a></strong></code>
<div class="block">Beginning character offset in the file.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fBeginColumnNumber">fBeginColumnNumber</a></strong></code>
<div class="block">Beginning column number.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fBeginLineNumber">fBeginLineNumber</a></strong></code>
<div class="block">Beginning line number.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../org/cyberneko/html/HTMLScanner.PlaybackInputStream.html" title="class in org.cyberneko.html">HTMLScanner.PlaybackInputStream</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fByteStream">fByteStream</a></strong></code>
<div class="block">The playback byte stream.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fCDATASections">fCDATASections</a></strong></code>
<div class="block">CDATA sections.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../org/cyberneko/html/HTMLScanner.Scanner.html" title="interface in org.cyberneko.html">HTMLScanner.Scanner</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fContentScanner">fContentScanner</a></strong></code>
<div class="block">Content scanner.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected <a href="../../../org/cyberneko/html/HTMLScanner.CurrentEntity.html" title="class in org.cyberneko.html">HTMLScanner.CurrentEntity</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fCurrentEntity">fCurrentEntity</a></strong></code>
<div class="block">Current entity.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected java.util.Stack</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fCurrentEntityStack">fCurrentEntityStack</a></strong></code>
<div class="block">The current entity stack.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fDefaultIANAEncoding">fDefaultIANAEncoding</a></strong></code>
<div class="block">Default encoding.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fDoctypePubid">fDoctypePubid</a></strong></code>
<div class="block">Doctype declaration public identifier.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fDoctypeSysid">fDoctypeSysid</a></strong></code>
<div class="block">Doctype declaration system identifier.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected org.apache.xerces.xni.XMLDocumentHandler</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fDocumentHandler">fDocumentHandler</a></strong></code>
<div class="block">The document handler.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fElementCount">fElementCount</a></strong></code>
<div class="block">Element count.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fElementDepth">fElementDepth</a></strong></code>
<div class="block">Element depth.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fEndCharacterOffset">fEndCharacterOffset</a></strong></code>
<div class="block">Ending character offset in the file.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fEndColumnNumber">fEndColumnNumber</a></strong></code>
<div class="block">Ending column number.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fEndLineNumber">fEndLineNumber</a></strong></code>
<div class="block">Ending line number.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../org/cyberneko/html/HTMLErrorReporter.html" title="interface in org.cyberneko.html">HTMLErrorReporter</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fErrorReporter">fErrorReporter</a></strong></code>
<div class="block">Error reporter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fFixWindowsCharRefs">fFixWindowsCharRefs</a></strong></code>
<div class="block">Fix Microsoft Windows&reg; character entity references.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fIANAEncoding">fIANAEncoding</a></strong></code>
<div class="block">Auto-detected IANA encoding.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fIgnoreSpecifiedCharset">fIgnoreSpecifiedCharset</a></strong></code>
<div class="block">Ignore specified character set.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fInsertDoctype">fInsertDoctype</a></strong></code>
<div class="block">Insert document type declaration.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fIso8859Encoding">fIso8859Encoding</a></strong></code>
<div class="block">True if the encoding matches "ISO-8859-*".</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#FIX_MSWINDOWS_REFS">FIX_MSWINDOWS_REFS</a></strong></code>
<div class="block">Fix Microsoft Windows&reg; character entity references.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fJavaEncoding">fJavaEncoding</a></strong></code>
<div class="block">Auto-detected Java encoding.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fNamesAttrs">fNamesAttrs</a></strong></code>
<div class="block">Modify HTML attribute names.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fNamesElems">fNamesElems</a></strong></code>
<div class="block">Modify HTML element names.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fNormalizeAttributes">fNormalizeAttributes</a></strong></code>
<div class="block">Normalize attribute values.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fNotifyCharRefs">fNotifyCharRefs</a></strong></code>
<div class="block">Notify character entity references.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fNotifyHtmlBuiltinRefs">fNotifyHtmlBuiltinRefs</a></strong></code>
<div class="block">Notify HTML built-in general entity references.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fNotifyXmlBuiltinRefs">fNotifyXmlBuiltinRefs</a></strong></code>
<div class="block">Notify XML built-in general entity references.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fOverrideDoctype">fOverrideDoctype</a></strong></code>
<div class="block">Override doctype declaration public and system identifiers.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fParseNoFramesContent">fParseNoFramesContent</a></strong></code>
<div class="block">Parse noframes content.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fParseNoScriptContent">fParseNoScriptContent</a></strong></code>
<div class="block">Parse noscript content.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fReportErrors">fReportErrors</a></strong></code>
<div class="block">Report errors.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../org/cyberneko/html/HTMLScanner.Scanner.html" title="interface in org.cyberneko.html">HTMLScanner.Scanner</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fScanner">fScanner</a></strong></code>
<div class="block">The current scanner.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fScannerState">fScannerState</a></strong></code>
<div class="block">The current scanner state.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fScriptStripCDATADelims">fScriptStripCDATADelims</a></strong></code>
<div class="block">Strip CDATA delimiters from SCRIPT tags.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fScriptStripCommentDelims">fScriptStripCommentDelims</a></strong></code>
<div class="block">Strip comment delimiters from SCRIPT tags.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected <a href="../../../org/cyberneko/html/HTMLScanner.SpecialScanner.html" title="class in org.cyberneko.html">HTMLScanner.SpecialScanner</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fSpecialScanner">fSpecialScanner</a></strong></code>
<div class="block">Special scanner used for elements whose content needs to be scanned 
 as plain text, ignoring markup such as elements and entity references.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected org.apache.xerces.util.XMLStringBuffer</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fStringBuffer">fStringBuffer</a></strong></code>
<div class="block">String buffer.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fStyleStripCDATADelims">fStyleStripCDATADelims</a></strong></code>
<div class="block">Strip CDATA delimiters from STYLE tags.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fStyleStripCommentDelims">fStyleStripCommentDelims</a></strong></code>
<div class="block">Strip comment delimiters from STYLE tags.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#HTML_4_01_FRAMESET_PUBID">HTML_4_01_FRAMESET_PUBID</a></strong></code>
<div class="block">HTML 4.01 frameset public identifier ("-//W3C//DTD HTML 4.01 Frameset//EN").</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#HTML_4_01_FRAMESET_SYSID">HTML_4_01_FRAMESET_SYSID</a></strong></code>
<div class="block">HTML 4.01 frameset system identifier ("http://www.w3.org/TR/html4/frameset.dtd").</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#HTML_4_01_STRICT_PUBID">HTML_4_01_STRICT_PUBID</a></strong></code>
<div class="block">HTML 4.01 strict public identifier ("-//W3C//DTD HTML 4.01//EN").</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#HTML_4_01_STRICT_SYSID">HTML_4_01_STRICT_SYSID</a></strong></code>
<div class="block">HTML 4.01 strict system identifier ("http://www.w3.org/TR/html4/strict.dtd").</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#HTML_4_01_TRANSITIONAL_PUBID">HTML_4_01_TRANSITIONAL_PUBID</a></strong></code>
<div class="block">HTML 4.01 transitional public identifier ("-//W3C//DTD HTML 4.01 Transitional//EN").</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#HTML_4_01_TRANSITIONAL_SYSID">HTML_4_01_TRANSITIONAL_SYSID</a></strong></code>
<div class="block">HTML 4.01 transitional system identifier ("http://www.w3.org/TR/html4/loose.dtd").</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#IGNORE_SPECIFIED_CHARSET">IGNORE_SPECIFIED_CHARSET</a></strong></code>
<div class="block">Ignore specified charset found in the &lt;meta equiv='Content-Type'
 content='text/html;charset=&hellip;'&gt; tag or in the &lt;?xml &hellip; encoding='&hellip;'&gt; processing instruction</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#INSERT_DOCTYPE">INSERT_DOCTYPE</a></strong></code>
<div class="block">Insert document type declaration.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#NAMES_ATTRS">NAMES_ATTRS</a></strong></code>
<div class="block">Modify HTML attribute names: { "upper", "lower", "default" }.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#NAMES_ELEMS">NAMES_ELEMS</a></strong></code>
<div class="block">Modify HTML element names: { "upper", "lower", "default" }.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#NAMES_LOWERCASE">NAMES_LOWERCASE</a></strong></code>
<div class="block">Lowercase HTML names.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#NAMES_NO_CHANGE">NAMES_NO_CHANGE</a></strong></code>
<div class="block">Don't modify HTML names.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#NAMES_UPPERCASE">NAMES_UPPERCASE</a></strong></code>
<div class="block">Uppercase HTML names.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#NORMALIZE_ATTRIBUTES">NORMALIZE_ATTRIBUTES</a></strong></code>
<div class="block">Normalize attribute values.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#NOTIFY_CHAR_REFS">NOTIFY_CHAR_REFS</a></strong></code>
<div class="block">Notify character entity references (e.g.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#NOTIFY_HTML_BUILTIN_REFS">NOTIFY_HTML_BUILTIN_REFS</a></strong></code>
<div class="block">Notify handler of built-in entity references (e.g.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#NOTIFY_XML_BUILTIN_REFS">NOTIFY_XML_BUILTIN_REFS</a></strong></code>
<div class="block">Notify handler of built-in entity references (e.g.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#OVERRIDE_DOCTYPE">OVERRIDE_DOCTYPE</a></strong></code>
<div class="block">Override doctype declaration public and system identifiers.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#PARSE_NOSCRIPT_CONTENT">PARSE_NOSCRIPT_CONTENT</a></strong></code>
<div class="block">Parse &lt;noscript&gt;...&lt;/noscript&gt; content</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#REPORT_ERRORS">REPORT_ERRORS</a></strong></code>
<div class="block">Report errors.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#SCRIPT_STRIP_CDATA_DELIMS">SCRIPT_STRIP_CDATA_DELIMS</a></strong></code>
<div class="block">Strip XHTML CDATA delimiters ("&lt;![CDATA[" and "]]&gt;") from 
 SCRIPT tag contents.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#SCRIPT_STRIP_COMMENT_DELIMS">SCRIPT_STRIP_COMMENT_DELIMS</a></strong></code>
<div class="block">Strip HTML comment delimiters ("&lt;!&minus;&minus;" and 
 "&minus;&minus;&gt;") from SCRIPT tag contents.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#STATE_CONTENT">STATE_CONTENT</a></strong></code>
<div class="block">State: content.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#STATE_END_DOCUMENT">STATE_END_DOCUMENT</a></strong></code>
<div class="block">State: end document.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#STATE_MARKUP_BRACKET">STATE_MARKUP_BRACKET</a></strong></code>
<div class="block">State: markup bracket.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#STATE_START_DOCUMENT">STATE_START_DOCUMENT</a></strong></code>
<div class="block">State: start document.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#STYLE_STRIP_CDATA_DELIMS">STYLE_STRIP_CDATA_DELIMS</a></strong></code>
<div class="block">Strip XHTML CDATA delimiters ("&lt;![CDATA[" and "]]&gt;") from 
 STYLE tag contents.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#STYLE_STRIP_COMMENT_DELIMS">STYLE_STRIP_COMMENT_DELIMS</a></strong></code>
<div class="block">Strip HTML comment delimiters ("&lt;!&minus;&minus;" and 
 "&minus;&minus;&gt;") from STYLE tag contents.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static <a href="../../../org/cyberneko/html/HTMLEventInfo.html" title="interface in org.cyberneko.html">HTMLEventInfo</a></code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#SYNTHESIZED_ITEM">SYNTHESIZED_ITEM</a></strong></code>
<div class="block">Synthesized event info item.</div>
</td>
</tr>
</table>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#HTMLScanner()">HTMLScanner</a></strong>()</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#builtinXmlRef(java.lang.String)">builtinXmlRef</a></strong>(java.lang.String&nbsp;name)</code>
<div class="block">Returns true if the name is a built-in XML general entity reference.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#cleanup(boolean)">cleanup</a></strong>(boolean&nbsp;closeall)</code>
<div class="block">Cleans up used resources.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#evaluateInputSource(org.apache.xerces.xni.parser.XMLInputSource)">evaluateInputSource</a></strong>(org.apache.xerces.xni.parser.XMLInputSource&nbsp;inputSource)</code>
<div class="block">Immediately evaluates an input source and add the new content (e.g.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#expandSystemId(java.lang.String,%20java.lang.String)">expandSystemId</a></strong>(java.lang.String&nbsp;systemId,
              java.lang.String&nbsp;baseSystemId)</code>
<div class="block">Expands a system id and returns the system id as a URI, if
 it can be expanded.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fixURI(java.lang.String)">fixURI</a></strong>(java.lang.String&nbsp;str)</code>
<div class="block">Fixes a platform dependent filename to standard URI form.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#fixWindowsCharacter(int)">fixWindowsCharacter</a></strong>(int&nbsp;origChar)</code>
<div class="block">Fixes Microsoft Windows&reg; specific characters.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getBaseSystemId()">getBaseSystemId</a></strong>()</code>
<div class="block">Returns the base system identifier.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getCharacterOffset()">getCharacterOffset</a></strong>()</code>
<div class="block">Returns the character offset.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getColumnNumber()">getColumnNumber</a></strong>()</code>
<div class="block">Returns the current column number.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>org.apache.xerces.xni.XMLDocumentHandler</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getDocumentHandler()">getDocumentHandler</a></strong>()</code>
<div class="block">Returns the document handler.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getEncoding()">getEncoding</a></strong>()</code>
<div class="block">Returns the encoding.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getExpandedSystemId()">getExpandedSystemId</a></strong>()</code>
<div class="block">Returns the expanded system identifier.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.Boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getFeatureDefault(java.lang.String)">getFeatureDefault</a></strong>(java.lang.String&nbsp;featureId)</code>
<div class="block">Returns the default state for a feature.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getLineNumber()">getLineNumber</a></strong>()</code>
<div class="block">Returns the current line number.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getLiteralSystemId()">getLiteralSystemId</a></strong>()</code>
<div class="block">Returns the literal system identifier.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static short</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getNamesValue(java.lang.String)">getNamesValue</a></strong>(java.lang.String&nbsp;value)</code>
<div class="block">Converts HTML names string value to constant value.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.Object</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getPropertyDefault(java.lang.String)">getPropertyDefault</a></strong>(java.lang.String&nbsp;propertyId)</code>
<div class="block">Returns the default state for a property.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getPublicId()">getPublicId</a></strong>()</code>
<div class="block">Returns the public identifier.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>java.lang.String[]</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getRecognizedFeatures()">getRecognizedFeatures</a></strong>()</code>
<div class="block">Returns recognized features.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String[]</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getRecognizedProperties()">getRecognizedProperties</a></strong>()</code>
<div class="block">Returns recognized properties.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getValue(org.apache.xerces.xni.XMLAttributes,%20java.lang.String)">getValue</a></strong>(org.apache.xerces.xni.XMLAttributes&nbsp;attrs,
        java.lang.String&nbsp;aname)</code>
<div class="block">Returns the value of the specified attribute, ignoring case.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#getXMLVersion()">getXMLVersion</a></strong>()</code>
<div class="block">Returns the XML version.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected org.apache.xerces.xni.Augmentations</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#locationAugs()">locationAugs</a></strong>()</code>
<div class="block">Returns an augmentations object with a location item added.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected static java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#modifyName(java.lang.String,%20short)">modifyName</a></strong>(java.lang.String&nbsp;name,
          short&nbsp;mode)</code>
<div class="block">Modifies the given name based on the specified mode.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#pushInputSource(org.apache.xerces.xni.parser.XMLInputSource)">pushInputSource</a></strong>(org.apache.xerces.xni.parser.XMLInputSource&nbsp;inputSource)</code>
<div class="block">Pushes an input source onto the current entity stack.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#read()">read</a></strong>()</code>
<div class="block">Reads a single character.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#readPreservingBufferContent()">readPreservingBufferContent</a></strong>()</code>
<div class="block">Reads a single character, preserving the old buffer content</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#reset(org.apache.xerces.xni.parser.XMLComponentManager)">reset</a></strong>(org.apache.xerces.xni.parser.XMLComponentManager&nbsp;manager)</code>
<div class="block">Resets the component.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected org.apache.xerces.xni.XMLResourceIdentifier</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#resourceId()">resourceId</a></strong>()</code>
<div class="block">Returns an empty resource identifier.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#scanDoctype()">scanDoctype</a></strong>()</code>
<div class="block">Scans a DOCTYPE line.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#scanDocument(boolean)">scanDocument</a></strong>(boolean&nbsp;complete)</code>
<div class="block">Scans the document.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#scanEntityRef(org.apache.xerces.util.XMLStringBuffer,%20boolean)">scanEntityRef</a></strong>(org.apache.xerces.util.XMLStringBuffer&nbsp;str,
             boolean&nbsp;content)</code>
<div class="block">Scans an entity reference.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#scanLiteral()">scanLiteral</a></strong>()</code>
<div class="block">Scans a quoted literal.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected java.lang.String</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#scanName(boolean)">scanName</a></strong>(boolean&nbsp;strict)</code>
<div class="block">Scans a name.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#setDocumentHandler(org.apache.xerces.xni.XMLDocumentHandler)">setDocumentHandler</a></strong>(org.apache.xerces.xni.XMLDocumentHandler&nbsp;handler)</code>
<div class="block">Sets the document handler.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#setFeature(java.lang.String,%20boolean)">setFeature</a></strong>(java.lang.String&nbsp;featureId,
          boolean&nbsp;state)</code>
<div class="block">Sets a feature.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#setInputSource(org.apache.xerces.xni.parser.XMLInputSource)">setInputSource</a></strong>(org.apache.xerces.xni.parser.XMLInputSource&nbsp;source)</code>
<div class="block">Sets the input source.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#setProperty(java.lang.String,%20java.lang.Object)">setProperty</a></strong>(java.lang.String&nbsp;propertyId,
           java.lang.Object&nbsp;value)</code>
<div class="block">Sets a property.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#setScanner(org.cyberneko.html.HTMLScanner.Scanner)">setScanner</a></strong>(<a href="../../../org/cyberneko/html/HTMLScanner.Scanner.html" title="interface in org.cyberneko.html">HTMLScanner.Scanner</a>&nbsp;scanner)</code>
<div class="block">Sets the scanner.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#setScannerState(short)">setScannerState</a></strong>(short&nbsp;state)</code>
<div class="block">Sets the scanner state.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#skip(java.lang.String,%20boolean)">skip</a></strong>(java.lang.String&nbsp;s,
    boolean&nbsp;caseSensitive)</code>
<div class="block">Returns true if the specified text is present and is skipped.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#skipMarkup(boolean)">skipMarkup</a></strong>(boolean&nbsp;balance)</code>
<div class="block">Skips markup.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected int</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#skipNewlines()">skipNewlines</a></strong>()</code>
<div class="block">Skips newlines and returns the number of newlines skipped.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected boolean</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#skipSpaces()">skipSpaces</a></strong>()</code>
<div class="block">Skips whitespace.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected org.apache.xerces.xni.Augmentations</code></td>
<td class="colLast"><code><strong><a href="../../../org/cyberneko/html/HTMLScanner.html#synthesizedAugs()">synthesizedAugs</a></strong>()</code>
<div class="block">Returns an augmentations object with a synthesized item added.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="HTML_4_01_STRICT_PUBID">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HTML_4_01_STRICT_PUBID</h4>
<pre>public static final&nbsp;java.lang.String HTML_4_01_STRICT_PUBID</pre>
<div class="block">HTML 4.01 strict public identifier ("-//W3C//DTD HTML 4.01//EN").</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.HTML_4_01_STRICT_PUBID">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="HTML_4_01_STRICT_SYSID">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HTML_4_01_STRICT_SYSID</h4>
<pre>public static final&nbsp;java.lang.String HTML_4_01_STRICT_SYSID</pre>
<div class="block">HTML 4.01 strict system identifier ("http://www.w3.org/TR/html4/strict.dtd").</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.HTML_4_01_STRICT_SYSID">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="HTML_4_01_TRANSITIONAL_PUBID">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HTML_4_01_TRANSITIONAL_PUBID</h4>
<pre>public static final&nbsp;java.lang.String HTML_4_01_TRANSITIONAL_PUBID</pre>
<div class="block">HTML 4.01 transitional public identifier ("-//W3C//DTD HTML 4.01 Transitional//EN").</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.HTML_4_01_TRANSITIONAL_PUBID">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="HTML_4_01_TRANSITIONAL_SYSID">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HTML_4_01_TRANSITIONAL_SYSID</h4>
<pre>public static final&nbsp;java.lang.String HTML_4_01_TRANSITIONAL_SYSID</pre>
<div class="block">HTML 4.01 transitional system identifier ("http://www.w3.org/TR/html4/loose.dtd").</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.HTML_4_01_TRANSITIONAL_SYSID">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="HTML_4_01_FRAMESET_PUBID">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HTML_4_01_FRAMESET_PUBID</h4>
<pre>public static final&nbsp;java.lang.String HTML_4_01_FRAMESET_PUBID</pre>
<div class="block">HTML 4.01 frameset public identifier ("-//W3C//DTD HTML 4.01 Frameset//EN").</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.HTML_4_01_FRAMESET_PUBID">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="HTML_4_01_FRAMESET_SYSID">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>HTML_4_01_FRAMESET_SYSID</h4>
<pre>public static final&nbsp;java.lang.String HTML_4_01_FRAMESET_SYSID</pre>
<div class="block">HTML 4.01 frameset system identifier ("http://www.w3.org/TR/html4/frameset.dtd").</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.HTML_4_01_FRAMESET_SYSID">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="AUGMENTATIONS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>AUGMENTATIONS</h4>
<pre>protected static final&nbsp;java.lang.String AUGMENTATIONS</pre>
<div class="block">Include infoset augmentations.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.AUGMENTATIONS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="REPORT_ERRORS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>REPORT_ERRORS</h4>
<pre>protected static final&nbsp;java.lang.String REPORT_ERRORS</pre>
<div class="block">Report errors.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.REPORT_ERRORS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NOTIFY_CHAR_REFS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NOTIFY_CHAR_REFS</h4>
<pre>public static final&nbsp;java.lang.String NOTIFY_CHAR_REFS</pre>
<div class="block">Notify character entity references (e.g. &amp;#32;, &amp;#x20;, etc).</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.NOTIFY_CHAR_REFS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NOTIFY_XML_BUILTIN_REFS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NOTIFY_XML_BUILTIN_REFS</h4>
<pre>public static final&nbsp;java.lang.String NOTIFY_XML_BUILTIN_REFS</pre>
<div class="block">Notify handler of built-in entity references (e.g. &amp;amp;, 
 &amp;lt;, etc).
 <p>
 <strong>Note:</strong>
 This only applies to the five pre-defined XML general entities.
 Specifically, "amp", "lt", "gt", "quot", and "apos". This is done 
 for compatibility with the Xerces feature.
 <p>
 To be notified of the built-in entity references in HTML, set the 
 <code>http://cyberneko.org/html/features/scanner/notify-builtin-refs</code> 
 feature to <code>true</code>.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.NOTIFY_XML_BUILTIN_REFS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NOTIFY_HTML_BUILTIN_REFS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NOTIFY_HTML_BUILTIN_REFS</h4>
<pre>public static final&nbsp;java.lang.String NOTIFY_HTML_BUILTIN_REFS</pre>
<div class="block">Notify handler of built-in entity references (e.g. &amp;nobr;, 
 &amp;copy;, etc).
 <p>
 <strong>Note:</strong>
 This <em>includes</em> the five pre-defined XML general entities.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.NOTIFY_HTML_BUILTIN_REFS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="FIX_MSWINDOWS_REFS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FIX_MSWINDOWS_REFS</h4>
<pre>public static final&nbsp;java.lang.String FIX_MSWINDOWS_REFS</pre>
<div class="block">Fix Microsoft Windows&reg; character entity references.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.FIX_MSWINDOWS_REFS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SCRIPT_STRIP_COMMENT_DELIMS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SCRIPT_STRIP_COMMENT_DELIMS</h4>
<pre>public static final&nbsp;java.lang.String SCRIPT_STRIP_COMMENT_DELIMS</pre>
<div class="block">Strip HTML comment delimiters ("&lt;!&minus;&minus;" and 
 "&minus;&minus;&gt;") from SCRIPT tag contents.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.SCRIPT_STRIP_COMMENT_DELIMS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SCRIPT_STRIP_CDATA_DELIMS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SCRIPT_STRIP_CDATA_DELIMS</h4>
<pre>public static final&nbsp;java.lang.String SCRIPT_STRIP_CDATA_DELIMS</pre>
<div class="block">Strip XHTML CDATA delimiters ("&lt;![CDATA[" and "]]&gt;") from 
 SCRIPT tag contents.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.SCRIPT_STRIP_CDATA_DELIMS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="STYLE_STRIP_COMMENT_DELIMS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STYLE_STRIP_COMMENT_DELIMS</h4>
<pre>public static final&nbsp;java.lang.String STYLE_STRIP_COMMENT_DELIMS</pre>
<div class="block">Strip HTML comment delimiters ("&lt;!&minus;&minus;" and 
 "&minus;&minus;&gt;") from STYLE tag contents.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.STYLE_STRIP_COMMENT_DELIMS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="STYLE_STRIP_CDATA_DELIMS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STYLE_STRIP_CDATA_DELIMS</h4>
<pre>public static final&nbsp;java.lang.String STYLE_STRIP_CDATA_DELIMS</pre>
<div class="block">Strip XHTML CDATA delimiters ("&lt;![CDATA[" and "]]&gt;") from 
 STYLE tag contents.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.STYLE_STRIP_CDATA_DELIMS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="IGNORE_SPECIFIED_CHARSET">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>IGNORE_SPECIFIED_CHARSET</h4>
<pre>public static final&nbsp;java.lang.String IGNORE_SPECIFIED_CHARSET</pre>
<div class="block">Ignore specified charset found in the &lt;meta equiv='Content-Type'
 content='text/html;charset=&hellip;'&gt; tag or in the &lt;?xml &hellip; encoding='&hellip;'&gt; processing instruction</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.IGNORE_SPECIFIED_CHARSET">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="CDATA_SECTIONS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CDATA_SECTIONS</h4>
<pre>public static final&nbsp;java.lang.String CDATA_SECTIONS</pre>
<div class="block">Scan CDATA sections.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.CDATA_SECTIONS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="OVERRIDE_DOCTYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>OVERRIDE_DOCTYPE</h4>
<pre>public static final&nbsp;java.lang.String OVERRIDE_DOCTYPE</pre>
<div class="block">Override doctype declaration public and system identifiers.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.OVERRIDE_DOCTYPE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="INSERT_DOCTYPE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INSERT_DOCTYPE</h4>
<pre>public static final&nbsp;java.lang.String INSERT_DOCTYPE</pre>
<div class="block">Insert document type declaration.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.INSERT_DOCTYPE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="PARSE_NOSCRIPT_CONTENT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PARSE_NOSCRIPT_CONTENT</h4>
<pre>public static final&nbsp;java.lang.String PARSE_NOSCRIPT_CONTENT</pre>
<div class="block">Parse &lt;noscript&gt;...&lt;/noscript&gt; content</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.PARSE_NOSCRIPT_CONTENT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ALLOW_SELFCLOSING_IFRAME">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ALLOW_SELFCLOSING_IFRAME</h4>
<pre>public static final&nbsp;java.lang.String ALLOW_SELFCLOSING_IFRAME</pre>
<div class="block">Allows self closing &lt;iframe/&gt; tag</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.ALLOW_SELFCLOSING_IFRAME">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ALLOW_SELFCLOSING_TAGS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ALLOW_SELFCLOSING_TAGS</h4>
<pre>public static final&nbsp;java.lang.String ALLOW_SELFCLOSING_TAGS</pre>
<div class="block">Allows self closing tags e.g. &lt;div/&gt; (XHTML)</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.ALLOW_SELFCLOSING_TAGS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NORMALIZE_ATTRIBUTES">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NORMALIZE_ATTRIBUTES</h4>
<pre>protected static final&nbsp;java.lang.String NORMALIZE_ATTRIBUTES</pre>
<div class="block">Normalize attribute values.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.NORMALIZE_ATTRIBUTES">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NAMES_ELEMS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NAMES_ELEMS</h4>
<pre>protected static final&nbsp;java.lang.String NAMES_ELEMS</pre>
<div class="block">Modify HTML element names: { "upper", "lower", "default" }.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.NAMES_ELEMS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NAMES_ATTRS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NAMES_ATTRS</h4>
<pre>protected static final&nbsp;java.lang.String NAMES_ATTRS</pre>
<div class="block">Modify HTML attribute names: { "upper", "lower", "default" }.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.NAMES_ATTRS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DEFAULT_ENCODING">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEFAULT_ENCODING</h4>
<pre>protected static final&nbsp;java.lang.String DEFAULT_ENCODING</pre>
<div class="block">Default encoding.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.DEFAULT_ENCODING">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="ERROR_REPORTER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ERROR_REPORTER</h4>
<pre>protected static final&nbsp;java.lang.String ERROR_REPORTER</pre>
<div class="block">Error reporter.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.ERROR_REPORTER">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DOCTYPE_PUBID">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DOCTYPE_PUBID</h4>
<pre>protected static final&nbsp;java.lang.String DOCTYPE_PUBID</pre>
<div class="block">Doctype declaration public identifier.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.DOCTYPE_PUBID">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DOCTYPE_SYSID">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DOCTYPE_SYSID</h4>
<pre>protected static final&nbsp;java.lang.String DOCTYPE_SYSID</pre>
<div class="block">Doctype declaration system identifier.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.DOCTYPE_SYSID">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="STATE_CONTENT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STATE_CONTENT</h4>
<pre>protected static final&nbsp;short STATE_CONTENT</pre>
<div class="block">State: content.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.STATE_CONTENT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="STATE_MARKUP_BRACKET">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STATE_MARKUP_BRACKET</h4>
<pre>protected static final&nbsp;short STATE_MARKUP_BRACKET</pre>
<div class="block">State: markup bracket.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.STATE_MARKUP_BRACKET">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="STATE_START_DOCUMENT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STATE_START_DOCUMENT</h4>
<pre>protected static final&nbsp;short STATE_START_DOCUMENT</pre>
<div class="block">State: start document.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.STATE_START_DOCUMENT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="STATE_END_DOCUMENT">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>STATE_END_DOCUMENT</h4>
<pre>protected static final&nbsp;short STATE_END_DOCUMENT</pre>
<div class="block">State: end document.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.STATE_END_DOCUMENT">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NAMES_NO_CHANGE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NAMES_NO_CHANGE</h4>
<pre>protected static final&nbsp;short NAMES_NO_CHANGE</pre>
<div class="block">Don't modify HTML names.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.NAMES_NO_CHANGE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NAMES_UPPERCASE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NAMES_UPPERCASE</h4>
<pre>protected static final&nbsp;short NAMES_UPPERCASE</pre>
<div class="block">Uppercase HTML names.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.NAMES_UPPERCASE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="NAMES_LOWERCASE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>NAMES_LOWERCASE</h4>
<pre>protected static final&nbsp;short NAMES_LOWERCASE</pre>
<div class="block">Lowercase HTML names.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.NAMES_LOWERCASE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DEFAULT_BUFFER_SIZE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEFAULT_BUFFER_SIZE</h4>
<pre>protected static final&nbsp;int DEFAULT_BUFFER_SIZE</pre>
<div class="block">Default buffer size.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.DEFAULT_BUFFER_SIZE">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DEBUG_CALLBACKS">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DEBUG_CALLBACKS</h4>
<pre>protected static final&nbsp;boolean DEBUG_CALLBACKS</pre>
<div class="block">Set to true to debug callbacks.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../constant-values.html#org.cyberneko.html.HTMLScanner.DEBUG_CALLBACKS">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="SYNTHESIZED_ITEM">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SYNTHESIZED_ITEM</h4>
<pre>protected static final&nbsp;<a href="../../../org/cyberneko/html/HTMLEventInfo.html" title="interface in org.cyberneko.html">HTMLEventInfo</a> SYNTHESIZED_ITEM</pre>
<div class="block">Synthesized event info item.</div>
</li>
</ul>
<a name="fAugmentations">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fAugmentations</h4>
<pre>protected&nbsp;boolean fAugmentations</pre>
<div class="block">Augmentations.</div>
</li>
</ul>
<a name="fReportErrors">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fReportErrors</h4>
<pre>protected&nbsp;boolean fReportErrors</pre>
<div class="block">Report errors.</div>
</li>
</ul>
<a name="fNotifyCharRefs">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fNotifyCharRefs</h4>
<pre>protected&nbsp;boolean fNotifyCharRefs</pre>
<div class="block">Notify character entity references.</div>
</li>
</ul>
<a name="fNotifyXmlBuiltinRefs">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fNotifyXmlBuiltinRefs</h4>
<pre>protected&nbsp;boolean fNotifyXmlBuiltinRefs</pre>
<div class="block">Notify XML built-in general entity references.</div>
</li>
</ul>
<a name="fNotifyHtmlBuiltinRefs">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fNotifyHtmlBuiltinRefs</h4>
<pre>protected&nbsp;boolean fNotifyHtmlBuiltinRefs</pre>
<div class="block">Notify HTML built-in general entity references.</div>
</li>
</ul>
<a name="fFixWindowsCharRefs">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fFixWindowsCharRefs</h4>
<pre>protected&nbsp;boolean fFixWindowsCharRefs</pre>
<div class="block">Fix Microsoft Windows&reg; character entity references.</div>
</li>
</ul>
<a name="fScriptStripCDATADelims">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fScriptStripCDATADelims</h4>
<pre>protected&nbsp;boolean fScriptStripCDATADelims</pre>
<div class="block">Strip CDATA delimiters from SCRIPT tags.</div>
</li>
</ul>
<a name="fScriptStripCommentDelims">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fScriptStripCommentDelims</h4>
<pre>protected&nbsp;boolean fScriptStripCommentDelims</pre>
<div class="block">Strip comment delimiters from SCRIPT tags.</div>
</li>
</ul>
<a name="fStyleStripCDATADelims">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fStyleStripCDATADelims</h4>
<pre>protected&nbsp;boolean fStyleStripCDATADelims</pre>
<div class="block">Strip CDATA delimiters from STYLE tags.</div>
</li>
</ul>
<a name="fStyleStripCommentDelims">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fStyleStripCommentDelims</h4>
<pre>protected&nbsp;boolean fStyleStripCommentDelims</pre>
<div class="block">Strip comment delimiters from STYLE tags.</div>
</li>
</ul>
<a name="fIgnoreSpecifiedCharset">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fIgnoreSpecifiedCharset</h4>
<pre>protected&nbsp;boolean fIgnoreSpecifiedCharset</pre>
<div class="block">Ignore specified character set.</div>
</li>
</ul>
<a name="fCDATASections">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fCDATASections</h4>
<pre>protected&nbsp;boolean fCDATASections</pre>
<div class="block">CDATA sections.</div>
</li>
</ul>
<a name="fOverrideDoctype">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fOverrideDoctype</h4>
<pre>protected&nbsp;boolean fOverrideDoctype</pre>
<div class="block">Override doctype declaration public and system identifiers.</div>
</li>
</ul>
<a name="fInsertDoctype">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fInsertDoctype</h4>
<pre>protected&nbsp;boolean fInsertDoctype</pre>
<div class="block">Insert document type declaration.</div>
</li>
</ul>
<a name="fNormalizeAttributes">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fNormalizeAttributes</h4>
<pre>protected&nbsp;boolean fNormalizeAttributes</pre>
<div class="block">Normalize attribute values.</div>
</li>
</ul>
<a name="fParseNoScriptContent">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fParseNoScriptContent</h4>
<pre>protected&nbsp;boolean fParseNoScriptContent</pre>
<div class="block">Parse noscript content.</div>
</li>
</ul>
<a name="fParseNoFramesContent">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fParseNoFramesContent</h4>
<pre>protected&nbsp;boolean fParseNoFramesContent</pre>
<div class="block">Parse noframes content.</div>
</li>
</ul>
<a name="fAllowSelfclosingIframe">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fAllowSelfclosingIframe</h4>
<pre>protected&nbsp;boolean fAllowSelfclosingIframe</pre>
<div class="block">Allows self closing iframe tags.</div>
</li>
</ul>
<a name="fAllowSelfclosingTags">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fAllowSelfclosingTags</h4>
<pre>protected&nbsp;boolean fAllowSelfclosingTags</pre>
<div class="block">Allows self closing tags.</div>
</li>
</ul>
<a name="fNamesElems">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fNamesElems</h4>
<pre>protected&nbsp;short fNamesElems</pre>
<div class="block">Modify HTML element names.</div>
</li>
</ul>
<a name="fNamesAttrs">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fNamesAttrs</h4>
<pre>protected&nbsp;short fNamesAttrs</pre>
<div class="block">Modify HTML attribute names.</div>
</li>
</ul>
<a name="fDefaultIANAEncoding">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fDefaultIANAEncoding</h4>
<pre>protected&nbsp;java.lang.String fDefaultIANAEncoding</pre>
<div class="block">Default encoding.</div>
</li>
</ul>
<a name="fErrorReporter">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fErrorReporter</h4>
<pre>protected&nbsp;<a href="../../../org/cyberneko/html/HTMLErrorReporter.html" title="interface in org.cyberneko.html">HTMLErrorReporter</a> fErrorReporter</pre>
<div class="block">Error reporter.</div>
</li>
</ul>
<a name="fDoctypePubid">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fDoctypePubid</h4>
<pre>protected&nbsp;java.lang.String fDoctypePubid</pre>
<div class="block">Doctype declaration public identifier.</div>
</li>
</ul>
<a name="fDoctypeSysid">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fDoctypeSysid</h4>
<pre>protected&nbsp;java.lang.String fDoctypeSysid</pre>
<div class="block">Doctype declaration system identifier.</div>
</li>
</ul>
<a name="fBeginLineNumber">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fBeginLineNumber</h4>
<pre>protected&nbsp;int fBeginLineNumber</pre>
<div class="block">Beginning line number.</div>
</li>
</ul>
<a name="fBeginColumnNumber">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fBeginColumnNumber</h4>
<pre>protected&nbsp;int fBeginColumnNumber</pre>
<div class="block">Beginning column number.</div>
</li>
</ul>
<a name="fBeginCharacterOffset">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fBeginCharacterOffset</h4>
<pre>protected&nbsp;int fBeginCharacterOffset</pre>
<div class="block">Beginning character offset in the file.</div>
</li>
</ul>
<a name="fEndLineNumber">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fEndLineNumber</h4>
<pre>protected&nbsp;int fEndLineNumber</pre>
<div class="block">Ending line number.</div>
</li>
</ul>
<a name="fEndColumnNumber">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fEndColumnNumber</h4>
<pre>protected&nbsp;int fEndColumnNumber</pre>
<div class="block">Ending column number.</div>
</li>
</ul>
<a name="fEndCharacterOffset">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fEndCharacterOffset</h4>
<pre>protected&nbsp;int fEndCharacterOffset</pre>
<div class="block">Ending character offset in the file.</div>
</li>
</ul>
<a name="fByteStream">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fByteStream</h4>
<pre>protected&nbsp;<a href="../../../org/cyberneko/html/HTMLScanner.PlaybackInputStream.html" title="class in org.cyberneko.html">HTMLScanner.PlaybackInputStream</a> fByteStream</pre>
<div class="block">The playback byte stream.</div>
</li>
</ul>
<a name="fCurrentEntity">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fCurrentEntity</h4>
<pre>protected&nbsp;<a href="../../../org/cyberneko/html/HTMLScanner.CurrentEntity.html" title="class in org.cyberneko.html">HTMLScanner.CurrentEntity</a> fCurrentEntity</pre>
<div class="block">Current entity.</div>
</li>
</ul>
<a name="fCurrentEntityStack">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fCurrentEntityStack</h4>
<pre>protected final&nbsp;java.util.Stack fCurrentEntityStack</pre>
<div class="block">The current entity stack.</div>
</li>
</ul>
<a name="fScanner">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fScanner</h4>
<pre>protected&nbsp;<a href="../../../org/cyberneko/html/HTMLScanner.Scanner.html" title="interface in org.cyberneko.html">HTMLScanner.Scanner</a> fScanner</pre>
<div class="block">The current scanner.</div>
</li>
</ul>
<a name="fScannerState">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fScannerState</h4>
<pre>protected&nbsp;short fScannerState</pre>
<div class="block">The current scanner state.</div>
</li>
</ul>
<a name="fDocumentHandler">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fDocumentHandler</h4>
<pre>protected&nbsp;org.apache.xerces.xni.XMLDocumentHandler fDocumentHandler</pre>
<div class="block">The document handler.</div>
</li>
</ul>
<a name="fIANAEncoding">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fIANAEncoding</h4>
<pre>protected&nbsp;java.lang.String fIANAEncoding</pre>
<div class="block">Auto-detected IANA encoding.</div>
</li>
</ul>
<a name="fJavaEncoding">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fJavaEncoding</h4>
<pre>protected&nbsp;java.lang.String fJavaEncoding</pre>
<div class="block">Auto-detected Java encoding.</div>
</li>
</ul>
<a name="fIso8859Encoding">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fIso8859Encoding</h4>
<pre>protected&nbsp;boolean fIso8859Encoding</pre>
<div class="block">True if the encoding matches "ISO-8859-*".</div>
</li>
</ul>
<a name="fElementCount">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fElementCount</h4>
<pre>protected&nbsp;int fElementCount</pre>
<div class="block">Element count.</div>
</li>
</ul>
<a name="fElementDepth">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fElementDepth</h4>
<pre>protected&nbsp;int fElementDepth</pre>
<div class="block">Element depth.</div>
</li>
</ul>
<a name="fContentScanner">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fContentScanner</h4>
<pre>protected&nbsp;<a href="../../../org/cyberneko/html/HTMLScanner.Scanner.html" title="interface in org.cyberneko.html">HTMLScanner.Scanner</a> fContentScanner</pre>
<div class="block">Content scanner.</div>
</li>
</ul>
<a name="fSpecialScanner">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fSpecialScanner</h4>
<pre>protected&nbsp;<a href="../../../org/cyberneko/html/HTMLScanner.SpecialScanner.html" title="class in org.cyberneko.html">HTMLScanner.SpecialScanner</a> fSpecialScanner</pre>
<div class="block">Special scanner used for elements whose content needs to be scanned 
 as plain text, ignoring markup such as elements and entity references.
 For example: &lt;SCRIPT&gt; and &lt;COMMENT&gt;.</div>
</li>
</ul>
<a name="fStringBuffer">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>fStringBuffer</h4>
<pre>protected final&nbsp;org.apache.xerces.util.XMLStringBuffer fStringBuffer</pre>
<div class="block">String buffer.</div>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="HTMLScanner()">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>HTMLScanner</h4>
<pre>public&nbsp;HTMLScanner()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="pushInputSource(org.apache.xerces.xni.parser.XMLInputSource)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>pushInputSource</h4>
<pre>public&nbsp;void&nbsp;pushInputSource(org.apache.xerces.xni.parser.XMLInputSource&nbsp;inputSource)</pre>
<div class="block">Pushes an input source onto the current entity stack. This 
 enables the scanner to transparently scan new content (e.g. 
 the output written by an embedded script). At the end of the
 current entity, the scanner returns where it left off at the
 time this entity source was pushed.
 <p>
 <strong>Note:</strong>
 This functionality is experimental at this time and is
 subject to change in future releases of NekoHTML.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>inputSource</code> - The new input source to start scanning.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/cyberneko/html/HTMLScanner.html#evaluateInputSource(org.apache.xerces.xni.parser.XMLInputSource)"><code>evaluateInputSource(XMLInputSource)</code></a></dd></dl>
</li>
</ul>
<a name="evaluateInputSource(org.apache.xerces.xni.parser.XMLInputSource)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>evaluateInputSource</h4>
<pre>public&nbsp;void&nbsp;evaluateInputSource(org.apache.xerces.xni.parser.XMLInputSource&nbsp;inputSource)</pre>
<div class="block">Immediately evaluates an input source and add the new content (e.g. 
 the output written by an embedded script).</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>inputSource</code> - The new input source to start evaluating.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/cyberneko/html/HTMLScanner.html#pushInputSource(org.apache.xerces.xni.parser.XMLInputSource)"><code>pushInputSource(XMLInputSource)</code></a></dd></dl>
</li>
</ul>
<a name="cleanup(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cleanup</h4>
<pre>public&nbsp;void&nbsp;cleanup(boolean&nbsp;closeall)</pre>
<div class="block">Cleans up used resources. For example, if scanning is terminated
 early, then this method ensures all remaining open streams are
 closed.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>closeall</code> - Close all streams, including the original.
                 This is used in cases when the application has
                 opened the original document stream and should
                 be responsible for closing it.</dd></dl>
</li>
</ul>
<a name="getEncoding()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getEncoding</h4>
<pre>public&nbsp;java.lang.String&nbsp;getEncoding()</pre>
<div class="block">Returns the encoding.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getEncoding</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.XMLLocator</code></dd>
</dl>
</li>
</ul>
<a name="getPublicId()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPublicId</h4>
<pre>public&nbsp;java.lang.String&nbsp;getPublicId()</pre>
<div class="block">Returns the public identifier.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getPublicId</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.XMLLocator</code></dd>
</dl>
</li>
</ul>
<a name="getBaseSystemId()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getBaseSystemId</h4>
<pre>public&nbsp;java.lang.String&nbsp;getBaseSystemId()</pre>
<div class="block">Returns the base system identifier.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getBaseSystemId</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.XMLLocator</code></dd>
</dl>
</li>
</ul>
<a name="getLiteralSystemId()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLiteralSystemId</h4>
<pre>public&nbsp;java.lang.String&nbsp;getLiteralSystemId()</pre>
<div class="block">Returns the literal system identifier.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getLiteralSystemId</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.XMLLocator</code></dd>
</dl>
</li>
</ul>
<a name="getExpandedSystemId()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getExpandedSystemId</h4>
<pre>public&nbsp;java.lang.String&nbsp;getExpandedSystemId()</pre>
<div class="block">Returns the expanded system identifier.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getExpandedSystemId</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.XMLLocator</code></dd>
</dl>
</li>
</ul>
<a name="getLineNumber()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLineNumber</h4>
<pre>public&nbsp;int&nbsp;getLineNumber()</pre>
<div class="block">Returns the current line number.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getLineNumber</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.XMLLocator</code></dd>
</dl>
</li>
</ul>
<a name="getColumnNumber()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getColumnNumber</h4>
<pre>public&nbsp;int&nbsp;getColumnNumber()</pre>
<div class="block">Returns the current column number.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getColumnNumber</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.XMLLocator</code></dd>
</dl>
</li>
</ul>
<a name="getXMLVersion()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getXMLVersion</h4>
<pre>public&nbsp;java.lang.String&nbsp;getXMLVersion()</pre>
<div class="block">Returns the XML version.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getXMLVersion</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.XMLLocator</code></dd>
</dl>
</li>
</ul>
<a name="getCharacterOffset()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCharacterOffset</h4>
<pre>public&nbsp;int&nbsp;getCharacterOffset()</pre>
<div class="block">Returns the character offset.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getCharacterOffset</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.XMLLocator</code></dd>
</dl>
</li>
</ul>
<a name="getFeatureDefault(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFeatureDefault</h4>
<pre>public&nbsp;java.lang.Boolean&nbsp;getFeatureDefault(java.lang.String&nbsp;featureId)</pre>
<div class="block">Returns the default state for a feature.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getFeatureDefault</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLComponent</code></dd>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../org/cyberneko/html/HTMLComponent.html#getFeatureDefault(java.lang.String)">getFeatureDefault</a></code>&nbsp;in interface&nbsp;<code><a href="../../../org/cyberneko/html/HTMLComponent.html" title="interface in org.cyberneko.html">HTMLComponent</a></code></dd>
</dl>
</li>
</ul>
<a name="getPropertyDefault(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPropertyDefault</h4>
<pre>public&nbsp;java.lang.Object&nbsp;getPropertyDefault(java.lang.String&nbsp;propertyId)</pre>
<div class="block">Returns the default state for a property.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getPropertyDefault</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLComponent</code></dd>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../org/cyberneko/html/HTMLComponent.html#getPropertyDefault(java.lang.String)">getPropertyDefault</a></code>&nbsp;in interface&nbsp;<code><a href="../../../org/cyberneko/html/HTMLComponent.html" title="interface in org.cyberneko.html">HTMLComponent</a></code></dd>
</dl>
</li>
</ul>
<a name="getRecognizedFeatures()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRecognizedFeatures</h4>
<pre>public&nbsp;java.lang.String[]&nbsp;getRecognizedFeatures()</pre>
<div class="block">Returns recognized features.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getRecognizedFeatures</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLComponent</code></dd>
</dl>
</li>
</ul>
<a name="getRecognizedProperties()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getRecognizedProperties</h4>
<pre>public&nbsp;java.lang.String[]&nbsp;getRecognizedProperties()</pre>
<div class="block">Returns recognized properties.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getRecognizedProperties</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLComponent</code></dd>
</dl>
</li>
</ul>
<a name="reset(org.apache.xerces.xni.parser.XMLComponentManager)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>reset</h4>
<pre>public&nbsp;void&nbsp;reset(org.apache.xerces.xni.parser.XMLComponentManager&nbsp;manager)
           throws org.apache.xerces.xni.parser.XMLConfigurationException</pre>
<div class="block">Resets the component.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>reset</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLComponent</code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>org.apache.xerces.xni.parser.XMLConfigurationException</code></dd></dl>
</li>
</ul>
<a name="setFeature(java.lang.String, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setFeature</h4>
<pre>public&nbsp;void&nbsp;setFeature(java.lang.String&nbsp;featureId,
              boolean&nbsp;state)</pre>
<div class="block">Sets a feature.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>setFeature</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLComponent</code></dd>
</dl>
</li>
</ul>
<a name="setProperty(java.lang.String, java.lang.Object)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setProperty</h4>
<pre>public&nbsp;void&nbsp;setProperty(java.lang.String&nbsp;propertyId,
               java.lang.Object&nbsp;value)
                 throws org.apache.xerces.xni.parser.XMLConfigurationException</pre>
<div class="block">Sets a property.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>setProperty</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLComponent</code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>org.apache.xerces.xni.parser.XMLConfigurationException</code></dd></dl>
</li>
</ul>
<a name="setInputSource(org.apache.xerces.xni.parser.XMLInputSource)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setInputSource</h4>
<pre>public&nbsp;void&nbsp;setInputSource(org.apache.xerces.xni.parser.XMLInputSource&nbsp;source)
                    throws java.io.IOException</pre>
<div class="block">Sets the input source.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>setInputSource</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLDocumentScanner</code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="scanDocument(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>scanDocument</h4>
<pre>public&nbsp;boolean&nbsp;scanDocument(boolean&nbsp;complete)
                     throws org.apache.xerces.xni.XNIException,
                            java.io.IOException</pre>
<div class="block">Scans the document.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>scanDocument</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLDocumentScanner</code></dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>org.apache.xerces.xni.XNIException</code></dd>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="setDocumentHandler(org.apache.xerces.xni.XMLDocumentHandler)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDocumentHandler</h4>
<pre>public&nbsp;void&nbsp;setDocumentHandler(org.apache.xerces.xni.XMLDocumentHandler&nbsp;handler)</pre>
<div class="block">Sets the document handler.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>setDocumentHandler</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLDocumentSource</code></dd>
</dl>
</li>
</ul>
<a name="getDocumentHandler()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDocumentHandler</h4>
<pre>public&nbsp;org.apache.xerces.xni.XMLDocumentHandler&nbsp;getDocumentHandler()</pre>
<div class="block">Returns the document handler.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code>getDocumentHandler</code>&nbsp;in interface&nbsp;<code>org.apache.xerces.xni.parser.XMLDocumentSource</code></dd>
</dl>
</li>
</ul>
<a name="getValue(org.apache.xerces.xni.XMLAttributes, java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getValue</h4>
<pre>protected static&nbsp;java.lang.String&nbsp;getValue(org.apache.xerces.xni.XMLAttributes&nbsp;attrs,
                        java.lang.String&nbsp;aname)</pre>
<div class="block">Returns the value of the specified attribute, ignoring case.</div>
</li>
</ul>
<a name="expandSystemId(java.lang.String, java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>expandSystemId</h4>
<pre>public static&nbsp;java.lang.String&nbsp;expandSystemId(java.lang.String&nbsp;systemId,
                              java.lang.String&nbsp;baseSystemId)</pre>
<div class="block">Expands a system id and returns the system id as a URI, if
 it can be expanded. A return value of null means that the
 identifier is already expanded. An exception thrown
 indicates a failure to expand the id.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>systemId</code> - The systemId to be expanded.</dd>
<dt><span class="strong">Returns:</span></dt><dd>Returns the URI string representing the expanded system
         identifier. A null value indicates that the given
         system identifier is already expanded.</dd></dl>
</li>
</ul>
<a name="fixURI(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fixURI</h4>
<pre>protected static&nbsp;java.lang.String&nbsp;fixURI(java.lang.String&nbsp;str)</pre>
<div class="block">Fixes a platform dependent filename to standard URI form.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>str</code> - The string to fix.</dd>
<dt><span class="strong">Returns:</span></dt><dd>Returns the fixed URI string.</dd></dl>
</li>
</ul>
<a name="modifyName(java.lang.String, short)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>modifyName</h4>
<pre>protected static final&nbsp;java.lang.String&nbsp;modifyName(java.lang.String&nbsp;name,
                          short&nbsp;mode)</pre>
<div class="block">Modifies the given name based on the specified mode.</div>
</li>
</ul>
<a name="getNamesValue(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getNamesValue</h4>
<pre>protected static final&nbsp;short&nbsp;getNamesValue(java.lang.String&nbsp;value)</pre>
<div class="block">Converts HTML names string value to constant value.</div>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../org/cyberneko/html/HTMLScanner.html#NAMES_NO_CHANGE"><code>NAMES_NO_CHANGE</code></a>, 
<a href="../../../org/cyberneko/html/HTMLScanner.html#NAMES_LOWERCASE"><code>NAMES_LOWERCASE</code></a>, 
<a href="../../../org/cyberneko/html/HTMLScanner.html#NAMES_UPPERCASE"><code>NAMES_UPPERCASE</code></a></dd></dl>
</li>
</ul>
<a name="fixWindowsCharacter(int)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fixWindowsCharacter</h4>
<pre>protected&nbsp;int&nbsp;fixWindowsCharacter(int&nbsp;origChar)</pre>
<div class="block">Fixes Microsoft Windows&reg; specific characters.
 <p>
 Details about this common problem can be found at 
 <a href='http://www.cs.tut.fi/~jkorpela/www/windows-chars.html'>http://www.cs.tut.fi/~jkorpela/www/windows-chars.html</a></div>
</li>
</ul>
<a name="read()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>read</h4>
<pre>protected&nbsp;int&nbsp;read()
            throws java.io.IOException</pre>
<div class="block">Reads a single character.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="setScanner(org.cyberneko.html.HTMLScanner.Scanner)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setScanner</h4>
<pre>protected&nbsp;void&nbsp;setScanner(<a href="../../../org/cyberneko/html/HTMLScanner.Scanner.html" title="interface in org.cyberneko.html">HTMLScanner.Scanner</a>&nbsp;scanner)</pre>
<div class="block">Sets the scanner.</div>
</li>
</ul>
<a name="setScannerState(short)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setScannerState</h4>
<pre>protected&nbsp;void&nbsp;setScannerState(short&nbsp;state)</pre>
<div class="block">Sets the scanner state.</div>
</li>
</ul>
<a name="scanDoctype()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>scanDoctype</h4>
<pre>protected&nbsp;void&nbsp;scanDoctype()
                    throws java.io.IOException</pre>
<div class="block">Scans a DOCTYPE line.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="scanLiteral()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>scanLiteral</h4>
<pre>protected&nbsp;java.lang.String&nbsp;scanLiteral()
                                throws java.io.IOException</pre>
<div class="block">Scans a quoted literal.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="scanName(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>scanName</h4>
<pre>protected&nbsp;java.lang.String&nbsp;scanName(boolean&nbsp;strict)
                             throws java.io.IOException</pre>
<div class="block">Scans a name.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="scanEntityRef(org.apache.xerces.util.XMLStringBuffer, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>scanEntityRef</h4>
<pre>protected&nbsp;int&nbsp;scanEntityRef(org.apache.xerces.util.XMLStringBuffer&nbsp;str,
                boolean&nbsp;content)
                     throws java.io.IOException</pre>
<div class="block">Scans an entity reference.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="skip(java.lang.String, boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>skip</h4>
<pre>protected&nbsp;boolean&nbsp;skip(java.lang.String&nbsp;s,
           boolean&nbsp;caseSensitive)
                throws java.io.IOException</pre>
<div class="block">Returns true if the specified text is present and is skipped.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="skipMarkup(boolean)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>skipMarkup</h4>
<pre>protected&nbsp;boolean&nbsp;skipMarkup(boolean&nbsp;balance)
                      throws java.io.IOException</pre>
<div class="block">Skips markup.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="skipSpaces()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>skipSpaces</h4>
<pre>protected&nbsp;boolean&nbsp;skipSpaces()
                      throws java.io.IOException</pre>
<div class="block">Skips whitespace.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="skipNewlines()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>skipNewlines</h4>
<pre>protected&nbsp;int&nbsp;skipNewlines()
                    throws java.io.IOException</pre>
<div class="block">Skips newlines and returns the number of newlines skipped.</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="locationAugs()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>locationAugs</h4>
<pre>protected final&nbsp;org.apache.xerces.xni.Augmentations&nbsp;locationAugs()</pre>
<div class="block">Returns an augmentations object with a location item added.</div>
</li>
</ul>
<a name="synthesizedAugs()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>synthesizedAugs</h4>
<pre>protected final&nbsp;org.apache.xerces.xni.Augmentations&nbsp;synthesizedAugs()</pre>
<div class="block">Returns an augmentations object with a synthesized item added.</div>
</li>
</ul>
<a name="resourceId()">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>resourceId</h4>
<pre>protected final&nbsp;org.apache.xerces.xni.XMLResourceIdentifier&nbsp;resourceId()</pre>
<div class="block">Returns an empty resource identifier.</div>
</li>
</ul>
<a name="builtinXmlRef(java.lang.String)">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>builtinXmlRef</h4>
<pre>protected static&nbsp;boolean&nbsp;builtinXmlRef(java.lang.String&nbsp;name)</pre>
<div class="block">Returns true if the name is a built-in XML general entity reference.</div>
</li>
</ul>
<a name="readPreservingBufferContent()">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>readPreservingBufferContent</h4>
<pre>protected&nbsp;int&nbsp;readPreservingBufferContent()
                                   throws java.io.IOException</pre>
<div class="block">Reads a single character, preserving the old buffer content</div>
<dl><dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!--   -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/HTMLScanner.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../org/cyberneko/html/HTMLEventInfo.SynthesizedItem.html" title="class in org.cyberneko.html"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../org/cyberneko/html/HTMLScanner.ContentScanner.html" title="class in org.cyberneko.html"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?org/cyberneko/html/HTMLScanner.html" target="_top">Frames</a></li>
<li><a href="HTMLScanner.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>(C) Copyright 2002-2014, Andy Clark, Marc Guillemot. All rights reserved.</small></p>
</body>
</html>