1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774
|
#Signature file v4.1
#Version 1.86.0
CLSS public abstract interface java.beans.PropertyChangeListener
intf java.util.EventListener
meth public abstract void propertyChange(java.beans.PropertyChangeEvent)
CLSS public abstract interface java.io.Serializable
CLSS public abstract interface java.lang.Comparable<%0 extends java.lang.Object>
meth public abstract int compareTo({java.lang.Comparable%0})
CLSS public abstract java.lang.Enum<%0 extends java.lang.Enum<{java.lang.Enum%0}>>
cons protected init(java.lang.String,int)
intf java.io.Serializable
intf java.lang.Comparable<{java.lang.Enum%0}>
meth protected final java.lang.Object clone() throws java.lang.CloneNotSupportedException
meth protected final void finalize()
meth public final boolean equals(java.lang.Object)
meth public final int compareTo({java.lang.Enum%0})
meth public final int hashCode()
meth public final int ordinal()
meth public final java.lang.Class<{java.lang.Enum%0}> getDeclaringClass()
meth public final java.lang.String name()
meth public java.lang.String toString()
meth public static <%0 extends java.lang.Enum<{%%0}>> {%%0} valueOf(java.lang.Class<{%%0}>,java.lang.String)
supr java.lang.Object
hfds name,ordinal
CLSS public java.lang.Object
cons public init()
meth protected java.lang.Object clone() throws java.lang.CloneNotSupportedException
meth protected void finalize() throws java.lang.Throwable
meth public boolean equals(java.lang.Object)
meth public final java.lang.Class<?> getClass()
meth public final void notify()
meth public final void notifyAll()
meth public final void wait() throws java.lang.InterruptedException
meth public final void wait(long) throws java.lang.InterruptedException
meth public final void wait(long,int) throws java.lang.InterruptedException
meth public int hashCode()
meth public java.lang.String toString()
CLSS public abstract interface java.lang.annotation.Annotation
meth public abstract boolean equals(java.lang.Object)
meth public abstract int hashCode()
meth public abstract java.lang.Class<? extends java.lang.annotation.Annotation> annotationType()
meth public abstract java.lang.String toString()
CLSS public abstract interface !annotation java.lang.annotation.Documented
anno 0 java.lang.annotation.Documented()
anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE])
intf java.lang.annotation.Annotation
CLSS public abstract interface !annotation java.lang.annotation.Retention
anno 0 java.lang.annotation.Documented()
anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE])
intf java.lang.annotation.Annotation
meth public abstract java.lang.annotation.RetentionPolicy value()
CLSS public abstract interface !annotation java.lang.annotation.Target
anno 0 java.lang.annotation.Documented()
anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=RUNTIME)
anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[ANNOTATION_TYPE])
intf java.lang.annotation.Annotation
meth public abstract java.lang.annotation.ElementType[] value()
CLSS public abstract interface java.util.EventListener
CLSS public abstract interface java_cup.runtime.Scanner
meth public abstract java_cup.runtime.Symbol next_token() throws java.lang.Exception
CLSS public abstract java_cup.runtime.lr_parser
cons public init()
cons public init(java_cup.runtime.Scanner)
cons public init(java_cup.runtime.Scanner,java_cup.runtime.SymbolFactory)
fld protected boolean _done_parsing
fld protected final static int _error_sync_size = 3
fld protected int lookahead_pos
fld protected int tos
fld protected java.util.Stack stack
fld protected java_cup.runtime.Symbol cur_token
fld protected java_cup.runtime.Symbol[] lookahead
fld protected short[][] action_tab
fld protected short[][] production_tab
fld protected short[][] reduce_tab
fld public java_cup.runtime.SymbolFactory symbolFactory
meth protected abstract void init_actions() throws java.lang.Exception
meth protected boolean advance_lookahead()
meth protected boolean error_recovery(boolean) throws java.lang.Exception
meth protected boolean find_recovery_config(boolean)
meth protected boolean shift_under_error()
meth protected boolean try_parse_ahead(boolean) throws java.lang.Exception
meth protected final short get_action(int,int)
meth protected final short get_reduce(int,int)
meth protected int error_sync_size()
meth protected java_cup.runtime.Symbol cur_err_token()
meth protected static short[][] unpackFromStrings(java.lang.String[])
meth protected void parse_lookahead(boolean) throws java.lang.Exception
meth protected void read_lookahead() throws java.lang.Exception
meth protected void restart_lookahead() throws java.lang.Exception
meth public abstract int EOF_sym()
meth public abstract int error_sym()
meth public abstract int start_production()
meth public abstract int start_state()
meth public abstract java_cup.runtime.Symbol do_action(int,java_cup.runtime.lr_parser,java.util.Stack,int) throws java.lang.Exception
meth public abstract short[][] action_table()
meth public abstract short[][] production_table()
meth public abstract short[][] reduce_table()
meth public java_cup.runtime.Scanner getScanner()
meth public java_cup.runtime.Symbol debug_parse() throws java.lang.Exception
meth public java_cup.runtime.Symbol parse() throws java.lang.Exception
meth public java_cup.runtime.Symbol scan() throws java.lang.Exception
meth public java_cup.runtime.SymbolFactory getSymbolFactory()
meth public void debug_message(java.lang.String)
meth public void debug_reduce(int,int,int)
meth public void debug_shift(java_cup.runtime.Symbol)
meth public void debug_stack()
meth public void done_parsing()
meth public void dump_stack()
meth public void report_error(java.lang.String,java.lang.Object)
meth public void report_fatal_error(java.lang.String,java.lang.Object) throws java.lang.Exception
meth public void setScanner(java_cup.runtime.Scanner)
meth public void syntax_error(java_cup.runtime.Symbol)
meth public void unrecovered_syntax_error(java_cup.runtime.Symbol) throws java.lang.Exception
meth public void user_init() throws java.lang.Exception
supr java.lang.Object
hfds _scanner
CLSS public abstract interface !annotation org.netbeans.api.annotations.common.SuppressWarnings
anno 0 java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy value=CLASS)
anno 0 java.lang.annotation.Target(java.lang.annotation.ElementType[] value=[CONSTRUCTOR, FIELD, LOCAL_VARIABLE, METHOD, PACKAGE, PARAMETER, TYPE])
intf java.lang.annotation.Annotation
meth public abstract !hasdefault java.lang.String justification()
meth public abstract !hasdefault java.lang.String[] value()
CLSS public abstract interface org.netbeans.api.lexer.TokenId
meth public abstract int ordinal()
meth public abstract java.lang.String name()
meth public abstract java.lang.String primaryCategory()
CLSS public abstract interface org.netbeans.modules.csl.api.ElementHandle
innr public static UrlHandle
meth public abstract boolean signatureEquals(org.netbeans.modules.csl.api.ElementHandle)
anno 1 org.netbeans.api.annotations.common.NonNull()
meth public abstract java.lang.String getIn()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public abstract java.lang.String getMimeType()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public abstract java.lang.String getName()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public abstract java.util.Set<org.netbeans.modules.csl.api.Modifier> getModifiers()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public abstract org.netbeans.modules.csl.api.ElementKind getKind()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public abstract org.netbeans.modules.csl.api.OffsetRange getOffsetRange(org.netbeans.modules.csl.spi.ParserResult)
anno 1 org.netbeans.api.annotations.common.NonNull()
meth public abstract org.openide.filesystems.FileObject getFileObject()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
CLSS public abstract interface org.netbeans.modules.csl.api.Error
innr public abstract interface static Badging
meth public abstract boolean isLineError()
meth public abstract int getEndPosition()
meth public abstract int getStartPosition()
meth public abstract java.lang.Object[] getParameters()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public abstract java.lang.String getDescription()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public abstract java.lang.String getDisplayName()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public abstract java.lang.String getKey()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public abstract org.netbeans.modules.csl.api.Severity getSeverity()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public abstract org.openide.filesystems.FileObject getFile()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
CLSS public abstract interface static org.netbeans.modules.csl.api.Error$Badging
outer org.netbeans.modules.csl.api.Error
intf org.netbeans.modules.csl.api.Error
meth public abstract boolean showExplorerBadge()
CLSS public abstract org.netbeans.modules.csl.spi.ParserResult
cons protected init(org.netbeans.modules.parsing.api.Snapshot)
meth public abstract java.util.List<? extends org.netbeans.modules.csl.api.Error> getDiagnostics()
supr org.netbeans.modules.parsing.spi.Parser$Result
CLSS public abstract org.netbeans.modules.parsing.spi.Parser
cons public init()
innr public abstract static Result
innr public final static !enum CancelReason
meth public abstract org.netbeans.modules.parsing.spi.Parser$Result getResult(org.netbeans.modules.parsing.api.Task) throws org.netbeans.modules.parsing.spi.ParseException
meth public abstract void addChangeListener(javax.swing.event.ChangeListener)
meth public abstract void parse(org.netbeans.modules.parsing.api.Snapshot,org.netbeans.modules.parsing.api.Task,org.netbeans.modules.parsing.spi.SourceModificationEvent) throws org.netbeans.modules.parsing.spi.ParseException
meth public abstract void removeChangeListener(javax.swing.event.ChangeListener)
meth public void cancel()
anno 0 java.lang.Deprecated()
meth public void cancel(org.netbeans.modules.parsing.spi.Parser$CancelReason,org.netbeans.modules.parsing.spi.SourceModificationEvent)
anno 1 org.netbeans.api.annotations.common.NonNull()
anno 2 org.netbeans.api.annotations.common.NullAllowed()
supr java.lang.Object
hcls MyAccessor
CLSS public abstract static org.netbeans.modules.parsing.spi.Parser$Result
outer org.netbeans.modules.parsing.spi.Parser
cons protected init(org.netbeans.modules.parsing.api.Snapshot)
meth protected abstract void invalidate()
meth public org.netbeans.modules.parsing.api.Snapshot getSnapshot()
supr java.lang.Object
hfds snapshot
CLSS public org.netbeans.modules.php.editor.api.AbstractElementQuery
cons public init(org.netbeans.modules.php.editor.api.ElementQuery$QueryScope)
intf org.netbeans.modules.php.editor.api.ElementQuery
meth public !varargs final org.netbeans.modules.php.editor.api.elements.PhpElement getAnyLast(java.lang.Class[])
meth public final <%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement> java.util.Set<{%%0}> getElements(java.lang.Class<{%%0}>)
meth public final <%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement> java.util.Set<{%%0}> getElements(java.lang.Class<{%%0}>,org.netbeans.modules.php.editor.api.NameKind)
meth public final <%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement> {%%0} getLast(java.lang.Class<{%%0}>)
meth public final <%0 extends org.netbeans.modules.php.editor.api.elements.TypeMemberElement> java.util.Set<{%%0}> getElements(java.lang.Class<{%%0}>,org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.ClassElement> getClasses()
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.ClassElement> getClasses(org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.ConstantElement> getConstants()
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.ConstantElement> getConstants(org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getFields(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getFields(org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.FunctionElement> getFunctions()
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.FunctionElement> getFunctions(org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.InterfaceElement> getInterfaces()
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.InterfaceElement> getInterfaces(org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getConstructors(org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getMethods(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getMethods(org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.NamespaceElement> getNamespaces(org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getTypeConstants(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getTypeConstants(org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeElement> getTypes(org.netbeans.modules.php.editor.api.NameKind)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeMemberElement> getTypeMembers(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public final void addElement(org.netbeans.modules.php.editor.api.elements.PhpElement)
meth public final void addElements(java.util.Set<? extends org.netbeans.modules.php.editor.api.elements.PhpElement>)
meth public java.util.LinkedList<org.netbeans.modules.php.editor.api.elements.PhpElement> getElements()
meth public java.util.Set<org.netbeans.modules.php.editor.api.elements.VariableElement> getTopLevelVariables(org.netbeans.modules.php.editor.api.NameKind)
meth public org.netbeans.modules.php.editor.api.ElementQuery$QueryScope getQueryScope()
supr java.lang.Object
hfds elements,queryScope
CLSS public final org.netbeans.modules.php.editor.api.AliasedName
cons public init(java.lang.String,org.netbeans.modules.php.editor.api.QualifiedName)
meth public java.lang.String getAliasName()
meth public org.netbeans.modules.php.editor.api.QualifiedName getRealName()
supr java.lang.Object
hfds aliasName,namespaceName
CLSS public abstract interface org.netbeans.modules.php.editor.api.ElementQuery
innr public abstract interface static File
innr public abstract interface static Index
innr public final static !enum QueryScope
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.ClassElement> getClasses()
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.ClassElement> getClasses(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.ConstantElement> getConstants()
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.ConstantElement> getConstants(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getFields(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getFields(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FunctionElement> getFunctions()
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FunctionElement> getFunctions(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.InterfaceElement> getInterfaces()
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.InterfaceElement> getInterfaces(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getConstructors(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getMethods(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getMethods(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.NamespaceElement> getNamespaces(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getTypeConstants(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getTypeConstants(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeElement> getTypes(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeMemberElement> getTypeMembers(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.VariableElement> getTopLevelVariables(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract org.netbeans.modules.php.editor.api.ElementQuery$QueryScope getQueryScope()
CLSS public abstract interface static org.netbeans.modules.php.editor.api.ElementQuery$File
outer org.netbeans.modules.php.editor.api.ElementQuery
intf org.netbeans.modules.php.editor.api.ElementQuery
meth public abstract java.net.URL getURL()
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getDeclaredFields(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getDeclaredMethods(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getDeclaredTypeConstants(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.VariableElement> getFunctionVariables(org.netbeans.modules.php.editor.api.elements.FunctionElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.VariableElement> getMethodVariables(org.netbeans.modules.php.editor.api.elements.MethodElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.VariableElement> getTopLevelVariables()
meth public abstract org.netbeans.modules.php.editor.parser.PHPParseResult getResult()
meth public abstract org.openide.filesystems.FileObject getFileObject()
CLSS public abstract interface static org.netbeans.modules.php.editor.api.ElementQuery$Index
outer org.netbeans.modules.php.editor.api.ElementQuery
intf org.netbeans.modules.php.editor.api.ElementQuery
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.ClassElement> getClasses(org.netbeans.modules.php.editor.api.NameKind,java.util.Set<org.netbeans.modules.php.editor.api.AliasedName>,org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.ClassElement> getDirectInheritedClasses(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.ClassElement> getInheritedClasses(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.ConstantElement> getConstants(org.netbeans.modules.php.editor.api.NameKind,java.util.Set<org.netbeans.modules.php.editor.api.AliasedName>,org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getAccessibleFields(org.netbeans.modules.php.editor.api.elements.TypeElement,org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getAccessibleStaticFields(org.netbeans.modules.php.editor.api.elements.TypeElement,org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getAlllFields(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getAlllFields(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getDeclaredFields(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getInheritedFields(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getStaticInheritedFields(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.FunctionElement> getFunctions(org.netbeans.modules.php.editor.api.NameKind,java.util.Set<org.netbeans.modules.php.editor.api.AliasedName>,org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.InterfaceElement> getDirectInheritedInterfaces(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.InterfaceElement> getInheritedInterfaces(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.InterfaceElement> getInterfaces(org.netbeans.modules.php.editor.api.NameKind,java.util.Set<org.netbeans.modules.php.editor.api.AliasedName>,org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getAccessibleMagicMethods(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getAccessibleMethods(org.netbeans.modules.php.editor.api.elements.TypeElement,org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getAccessibleStaticMethods(org.netbeans.modules.php.editor.api.elements.TypeElement,org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getAllMethods(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getAllMethods(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getConstructors(org.netbeans.modules.php.editor.api.NameKind,java.util.Set<org.netbeans.modules.php.editor.api.AliasedName>,org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getConstructors(org.netbeans.modules.php.editor.api.elements.ClassElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getDeclaredConstructors(org.netbeans.modules.php.editor.api.elements.ClassElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getDeclaredMethods(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getInheritedMethods(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getStaticInheritedMethods(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.NamespaceElement> getNamespaces(org.netbeans.modules.php.editor.api.NameKind,java.util.Set<org.netbeans.modules.php.editor.api.AliasedName>,org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.PhpElement> getTopLevelElements(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.PhpElement> getTopLevelElements(org.netbeans.modules.php.editor.api.NameKind,java.util.Set<org.netbeans.modules.php.editor.api.AliasedName>,org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TraitElement> getTraits(org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getAccessibleMagicConstants(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getAllTypeConstants(org.netbeans.modules.php.editor.api.NameKind$Exact,org.netbeans.modules.php.editor.api.NameKind)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getAllTypeConstants(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getDeclaredTypeConstants(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getInheritedTypeConstants(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeElement> getDirectInheritedByTypes(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeElement> getDirectInheritedTypes(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeElement> getInheritedByTypes(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeElement> getInheritedTypes(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeElement> getTypes(org.netbeans.modules.php.editor.api.NameKind,java.util.Set<org.netbeans.modules.php.editor.api.AliasedName>,org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeMemberElement> getAccessibleMixinTypeMembers(org.netbeans.modules.php.editor.api.elements.TypeElement,org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeMemberElement> getAccessibleTypeMembers(org.netbeans.modules.php.editor.api.elements.TypeElement,org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeMemberElement> getAllTypeMembers(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeMemberElement> getDeclaredTypeMembers(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeMemberElement> getInheritedTypeMembers(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract java.util.Set<org.openide.filesystems.FileObject> getLocationsForIdentifiers(java.lang.String)
meth public abstract org.netbeans.modules.php.editor.api.elements.TreeElement<org.netbeans.modules.php.editor.api.elements.TypeElement> getInheritedByTypesAsTree(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract org.netbeans.modules.php.editor.api.elements.TreeElement<org.netbeans.modules.php.editor.api.elements.TypeElement> getInheritedByTypesAsTree(org.netbeans.modules.php.editor.api.elements.TypeElement,java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeElement>)
meth public abstract org.netbeans.modules.php.editor.api.elements.TreeElement<org.netbeans.modules.php.editor.api.elements.TypeElement> getInheritedTypesAsTree(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public abstract org.netbeans.modules.php.editor.api.elements.TreeElement<org.netbeans.modules.php.editor.api.elements.TypeElement> getInheritedTypesAsTree(org.netbeans.modules.php.editor.api.elements.TypeElement,java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeElement>)
CLSS public final static !enum org.netbeans.modules.php.editor.api.ElementQuery$QueryScope
outer org.netbeans.modules.php.editor.api.ElementQuery
fld public final static org.netbeans.modules.php.editor.api.ElementQuery$QueryScope FILE_SCOPE
fld public final static org.netbeans.modules.php.editor.api.ElementQuery$QueryScope INDEX_SCOPE
fld public final static org.netbeans.modules.php.editor.api.ElementQuery$QueryScope VIRTUAL_SCOPE
meth public boolean isFileScope()
meth public boolean isIndexScope()
meth public boolean isVirtualScope()
meth public static org.netbeans.modules.php.editor.api.ElementQuery$QueryScope valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.ElementQuery$QueryScope[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.api.ElementQuery$QueryScope>
CLSS public final org.netbeans.modules.php.editor.api.ElementQueryFactory
meth public static org.netbeans.modules.php.editor.api.ElementQuery$File createFileQuery(org.netbeans.modules.php.editor.parser.PHPParseResult)
meth public static org.netbeans.modules.php.editor.api.ElementQuery$Index createIndexQuery(org.netbeans.modules.parsing.spi.indexing.support.QuerySupport)
meth public static org.netbeans.modules.php.editor.api.ElementQuery$Index getIndexQuery(org.netbeans.modules.csl.spi.ParserResult)
meth public static org.netbeans.modules.php.editor.api.ElementQuery$Index getIndexQuery(org.netbeans.modules.php.editor.parser.PHPParseResult)
supr java.lang.Object
CLSS public final org.netbeans.modules.php.editor.api.FileElementQuery
intf org.netbeans.modules.php.editor.api.ElementQuery$File
meth public java.net.URL getURL()
meth public java.util.Set<org.netbeans.modules.php.editor.api.elements.ConstantElement> createConstant(org.netbeans.modules.php.editor.api.elements.NamespaceElement,org.netbeans.modules.php.editor.parser.astnodes.ConstantDeclaration)
meth public java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> create(org.netbeans.modules.php.editor.api.elements.TypeElement,org.netbeans.modules.php.editor.parser.astnodes.FieldsDeclaration)
meth public java.util.Set<org.netbeans.modules.php.editor.api.elements.FieldElement> getDeclaredFields(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public java.util.Set<org.netbeans.modules.php.editor.api.elements.MethodElement> getDeclaredMethods(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> createTypeConstant(org.netbeans.modules.php.editor.api.elements.TypeElement,org.netbeans.modules.php.editor.parser.astnodes.ConstantDeclaration)
meth public java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeConstantElement> getDeclaredTypeConstants(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public java.util.Set<org.netbeans.modules.php.editor.api.elements.VariableElement> getFunctionVariables(org.netbeans.modules.php.editor.api.elements.FunctionElement)
meth public java.util.Set<org.netbeans.modules.php.editor.api.elements.VariableElement> getMethodVariables(org.netbeans.modules.php.editor.api.elements.MethodElement)
meth public java.util.Set<org.netbeans.modules.php.editor.api.elements.VariableElement> getTopLevelVariables()
meth public org.netbeans.modules.php.editor.api.elements.ClassElement create(org.netbeans.modules.php.editor.api.elements.NamespaceElement,org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration)
meth public org.netbeans.modules.php.editor.api.elements.FieldElement create(org.netbeans.modules.php.editor.api.elements.TypeElement,org.netbeans.modules.php.editor.parser.astnodes.FieldAccess)
meth public org.netbeans.modules.php.editor.api.elements.FunctionElement create(org.netbeans.modules.php.editor.api.elements.NamespaceElement,org.netbeans.modules.php.editor.parser.astnodes.FunctionDeclaration)
meth public org.netbeans.modules.php.editor.api.elements.InterfaceElement create(org.netbeans.modules.php.editor.api.elements.NamespaceElement,org.netbeans.modules.php.editor.parser.astnodes.InterfaceDeclaration)
meth public org.netbeans.modules.php.editor.api.elements.MethodElement create(org.netbeans.modules.php.editor.api.elements.TypeElement,org.netbeans.modules.php.editor.parser.astnodes.MethodDeclaration)
meth public org.netbeans.modules.php.editor.api.elements.NamespaceElement create(org.netbeans.modules.php.editor.parser.astnodes.NamespaceDeclaration)
meth public org.netbeans.modules.php.editor.api.elements.TraitElement create(org.netbeans.modules.php.editor.api.elements.NamespaceElement,org.netbeans.modules.php.editor.parser.astnodes.TraitDeclaration)
meth public org.netbeans.modules.php.editor.api.elements.TypeElement create(org.netbeans.modules.php.editor.api.elements.NamespaceElement,org.netbeans.modules.php.editor.parser.astnodes.TypeDeclaration)
meth public org.netbeans.modules.php.editor.api.elements.VariableElement createFunctionVariable(org.netbeans.modules.php.editor.api.elements.FunctionElement,org.netbeans.modules.php.editor.parser.astnodes.Variable)
meth public org.netbeans.modules.php.editor.api.elements.VariableElement createMethodVariable(org.netbeans.modules.php.editor.api.elements.MethodElement,org.netbeans.modules.php.editor.parser.astnodes.Variable)
meth public org.netbeans.modules.php.editor.api.elements.VariableElement createTopLevelVariable(org.netbeans.modules.php.editor.parser.astnodes.Variable)
meth public org.netbeans.modules.php.editor.parser.PHPParseResult getResult()
meth public org.openide.filesystems.FileObject getFileObject()
meth public static org.netbeans.modules.php.editor.api.FileElementQuery getInstance(org.netbeans.modules.php.editor.parser.PHPParseResult)
supr org.netbeans.modules.php.editor.api.AbstractElementQuery
hfds fields,fileObject,result,url,varMap
hcls VariableTypeResolver
CLSS public org.netbeans.modules.php.editor.api.NameKind
innr public final static CaseInsensitivePrefix
innr public final static Empty
innr public final static Exact
innr public final static Prefix
meth public boolean isCaseInsensitivePrefix()
meth public boolean isEmpty()
meth public boolean isExact()
meth public boolean isPrefix()
meth public boolean matchesName(org.netbeans.modules.php.editor.api.PhpElementKind,java.lang.String)
meth public boolean matchesName(org.netbeans.modules.php.editor.api.PhpElementKind,org.netbeans.modules.php.editor.api.QualifiedName)
meth public boolean matchesName(org.netbeans.modules.php.editor.api.elements.PhpElement)
meth public java.lang.String getQueryName()
meth public org.netbeans.modules.parsing.spi.indexing.support.QuerySupport$Kind getQueryKind()
meth public org.netbeans.modules.php.editor.api.QualifiedName getQuery()
meth public static boolean isCaseSensitive(org.netbeans.modules.php.editor.api.PhpElementKind)
meth public static boolean isDollared(org.netbeans.modules.php.editor.api.PhpElementKind)
meth public static org.netbeans.modules.php.editor.api.NameKind create(java.lang.String,org.netbeans.modules.parsing.spi.indexing.support.QuerySupport$Kind)
meth public static org.netbeans.modules.php.editor.api.NameKind create(org.netbeans.modules.php.editor.api.QualifiedName,org.netbeans.modules.parsing.spi.indexing.support.QuerySupport$Kind)
meth public static org.netbeans.modules.php.editor.api.NameKind$CaseInsensitivePrefix caseInsensitivePrefix(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.NameKind$CaseInsensitivePrefix caseInsensitivePrefix(org.netbeans.modules.php.editor.api.QualifiedName)
meth public static org.netbeans.modules.php.editor.api.NameKind$Empty empty()
meth public static org.netbeans.modules.php.editor.api.NameKind$Exact exact(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.NameKind$Exact exact(org.netbeans.modules.php.editor.api.QualifiedName)
meth public static org.netbeans.modules.php.editor.api.NameKind$Exact forElement(org.netbeans.modules.php.editor.api.elements.PhpElement)
meth public static org.netbeans.modules.php.editor.api.NameKind$Prefix prefix(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.NameKind$Prefix prefix(org.netbeans.modules.php.editor.api.QualifiedName)
supr java.lang.Object
hfds query,queryKind
CLSS public final static org.netbeans.modules.php.editor.api.NameKind$CaseInsensitivePrefix
outer org.netbeans.modules.php.editor.api.NameKind
supr org.netbeans.modules.php.editor.api.NameKind
CLSS public final static org.netbeans.modules.php.editor.api.NameKind$Empty
outer org.netbeans.modules.php.editor.api.NameKind
supr org.netbeans.modules.php.editor.api.NameKind
CLSS public final static org.netbeans.modules.php.editor.api.NameKind$Exact
outer org.netbeans.modules.php.editor.api.NameKind
supr org.netbeans.modules.php.editor.api.NameKind
CLSS public final static org.netbeans.modules.php.editor.api.NameKind$Prefix
outer org.netbeans.modules.php.editor.api.NameKind
supr org.netbeans.modules.php.editor.api.NameKind
CLSS public final !enum org.netbeans.modules.php.editor.api.PhpElementKind
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind CLASS
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind CONSTANT
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind CONSTRUCTOR
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind EMPTY
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind FIELD
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind FUNCTION
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind GROUP_USE_STATEMENT
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind IFACE
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind INCLUDE
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind INDEX
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind METHOD
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind NAMESPACE_DECLARATION
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind PROGRAM
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind TRAIT
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind TRAIT_CONFLICT_RESOLUTION
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind TRAIT_METHOD_ALIAS
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind TYPE_CONSTANT
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind USE_ALIAS
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind USE_STATEMENT
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind VARIABLE
meth public final org.netbeans.modules.csl.api.ElementKind getElementKind()
meth public static org.netbeans.modules.php.editor.api.PhpElementKind valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.PhpElementKind[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.api.PhpElementKind>
CLSS public final org.netbeans.modules.php.editor.api.PhpModifiers
fld public final static int ALL_FLAGS = -1
fld public final static int NO_FLAGS = 0
fld public final static java.lang.String VISIBILITY_PRIVATE = "private"
fld public final static java.lang.String VISIBILITY_PROTECTED = "protected"
fld public final static java.lang.String VISIBILITY_PUBLIC = "public"
fld public final static java.lang.String VISIBILITY_VAR = "var"
meth public !varargs static org.netbeans.modules.php.editor.api.PhpModifiers fromBitMask(int[])
meth public boolean equals(java.lang.Object)
meth public boolean isAbstract()
meth public boolean isFinal()
meth public boolean isImplicitPublic()
meth public boolean isPrivate()
meth public boolean isProtected()
meth public boolean isPublic()
meth public boolean isStatic()
meth public int hashCode()
meth public int toFlags()
meth public java.lang.String toString()
meth public java.util.Set<org.netbeans.modules.csl.api.Modifier> toModifiers()
meth public org.netbeans.modules.php.editor.api.PhpModifiers setAbstract()
meth public org.netbeans.modules.php.editor.api.PhpModifiers setFinal()
meth public org.netbeans.modules.php.editor.api.PhpModifiers setImplicitPublic()
meth public org.netbeans.modules.php.editor.api.PhpModifiers setPrivate()
meth public org.netbeans.modules.php.editor.api.PhpModifiers setProtected()
meth public org.netbeans.modules.php.editor.api.PhpModifiers setPublic()
meth public org.netbeans.modules.php.editor.api.PhpModifiers setStatic()
meth public static org.netbeans.modules.php.editor.api.PhpModifiers noModifiers()
supr org.netbeans.modules.php.editor.parser.astnodes.BodyDeclaration$Modifier
hfds EMPTY,mod
CLSS public final org.netbeans.modules.php.editor.api.QualifiedName
meth public boolean equals(java.lang.Object)
meth public boolean isDefaultNamespace()
meth public int hashCode()
meth public java.lang.String getName()
meth public java.lang.String getNamespaceName()
meth public java.lang.String toString()
meth public java.lang.String toString(int)
meth public java.util.LinkedList<java.lang.String> getSegments()
meth public org.netbeans.modules.php.editor.api.QualifiedName append(java.lang.String)
meth public org.netbeans.modules.php.editor.api.QualifiedName append(org.netbeans.modules.php.editor.api.QualifiedName)
meth public org.netbeans.modules.php.editor.api.QualifiedName toFullyQualified()
meth public org.netbeans.modules.php.editor.api.QualifiedName toFullyQualified(org.netbeans.modules.php.editor.api.QualifiedName)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public org.netbeans.modules.php.editor.api.QualifiedName toFullyQualified(org.netbeans.modules.php.editor.model.NamespaceScope)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public org.netbeans.modules.php.editor.api.QualifiedName toName()
meth public org.netbeans.modules.php.editor.api.QualifiedName toNamespaceName()
meth public org.netbeans.modules.php.editor.api.QualifiedName toNamespaceName(boolean)
meth public org.netbeans.modules.php.editor.api.QualifiedName toNotFullyQualified()
meth public org.netbeans.modules.php.editor.api.QualifiedNameKind getKind()
meth public static org.netbeans.modules.php.editor.api.QualifiedName create(boolean,java.util.List<java.lang.String>)
meth public static org.netbeans.modules.php.editor.api.QualifiedName create(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.QualifiedName create(org.netbeans.modules.php.editor.model.NamespaceScope)
meth public static org.netbeans.modules.php.editor.api.QualifiedName create(org.netbeans.modules.php.editor.parser.astnodes.Expression)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.modules.php.editor.api.QualifiedName create(org.netbeans.modules.php.editor.parser.astnodes.NamespaceName)
meth public static org.netbeans.modules.php.editor.api.QualifiedName createForDefaultNamespaceName()
meth public static org.netbeans.modules.php.editor.api.QualifiedName createFullyQualified(java.lang.String,java.lang.String)
meth public static org.netbeans.modules.php.editor.api.QualifiedName createUnqualifiedName(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.QualifiedName createUnqualifiedName(org.netbeans.modules.php.editor.parser.astnodes.Identifier)
meth public static org.netbeans.modules.php.editor.api.QualifiedName createUnqualifiedNameInClassContext(java.lang.String,org.netbeans.modules.php.editor.model.ClassScope)
meth public static org.netbeans.modules.php.editor.api.QualifiedName createUnqualifiedNameInClassContext(org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.model.ClassScope)
meth public static org.netbeans.modules.php.editor.api.QualifiedName createUnqualifiedNameInClassContext(org.netbeans.modules.php.editor.parser.astnodes.Identifier,org.netbeans.modules.php.editor.model.ClassScope)
meth public static org.netbeans.modules.php.editor.api.QualifiedName getPrefix(org.netbeans.modules.php.editor.api.QualifiedName,org.netbeans.modules.php.editor.api.QualifiedName,boolean)
meth public static org.netbeans.modules.php.editor.api.QualifiedName getSuffix(org.netbeans.modules.php.editor.api.QualifiedName,org.netbeans.modules.php.editor.api.QualifiedName,boolean)
supr java.lang.Object
hfds kind,segments
CLSS public final !enum org.netbeans.modules.php.editor.api.QualifiedNameKind
fld public final static org.netbeans.modules.php.editor.api.QualifiedNameKind FULLYQUALIFIED
fld public final static org.netbeans.modules.php.editor.api.QualifiedNameKind QUALIFIED
fld public final static org.netbeans.modules.php.editor.api.QualifiedNameKind UNQUALIFIED
meth public boolean isFullyQualified()
meth public boolean isQualified()
meth public boolean isUnqualified()
meth public static org.netbeans.modules.php.editor.api.QualifiedNameKind resolveKind(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.QualifiedNameKind resolveKind(java.util.List<java.lang.String>)
meth public static org.netbeans.modules.php.editor.api.QualifiedNameKind resolveKind(org.netbeans.modules.php.editor.parser.astnodes.Identifier)
meth public static org.netbeans.modules.php.editor.api.QualifiedNameKind resolveKind(org.netbeans.modules.php.editor.parser.astnodes.NamespaceName)
meth public static org.netbeans.modules.php.editor.api.QualifiedNameKind valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.QualifiedNameKind[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.api.QualifiedNameKind>
CLSS public final org.netbeans.modules.php.editor.api.QuerySupportFactory
meth public static org.netbeans.modules.parsing.spi.indexing.support.QuerySupport get(java.util.Collection<org.openide.filesystems.FileObject>)
meth public static org.netbeans.modules.parsing.spi.indexing.support.QuerySupport get(org.netbeans.modules.csl.spi.ParserResult)
meth public static org.netbeans.modules.parsing.spi.indexing.support.QuerySupport get(org.openide.filesystems.FileObject)
meth public static org.netbeans.modules.parsing.spi.indexing.support.QuerySupport getDependent(org.openide.filesystems.FileObject)
supr java.lang.Object
CLSS public abstract org.netbeans.modules.php.editor.api.elements.AbstractElementHandle
cons public init()
intf org.netbeans.modules.csl.api.ElementHandle
meth public boolean signatureEquals(org.netbeans.modules.csl.api.ElementHandle)
meth public java.lang.String getIn()
meth public java.lang.String getMimeType()
meth public java.util.Set<org.netbeans.modules.csl.api.Modifier> getModifiers()
meth public org.netbeans.modules.csl.api.OffsetRange getOffsetRange(org.netbeans.modules.csl.spi.ParserResult)
meth public org.openide.filesystems.FileObject getFileObject()
supr java.lang.Object
CLSS public final org.netbeans.modules.php.editor.api.elements.AliasedClass
cons public init(org.netbeans.modules.php.editor.api.AliasedName,org.netbeans.modules.php.editor.api.elements.ClassElement)
intf org.netbeans.modules.php.editor.api.elements.ClassElement
meth public boolean isAbstract()
meth public boolean isAnonymous()
meth public boolean isFinal()
meth public java.util.Collection<org.netbeans.modules.php.editor.api.QualifiedName> getFQMixinClassNames()
meth public java.util.Collection<org.netbeans.modules.php.editor.api.QualifiedName> getPossibleFQSuperClassNames()
meth public java.util.Collection<org.netbeans.modules.php.editor.api.QualifiedName> getUsedTraits()
meth public org.netbeans.modules.php.editor.api.QualifiedName getSuperClassName()
supr org.netbeans.modules.php.editor.api.elements.AliasedType
CLSS public org.netbeans.modules.php.editor.api.elements.AliasedConstant
cons public init(org.netbeans.modules.php.editor.api.AliasedName,org.netbeans.modules.php.editor.api.elements.ConstantElement)
intf org.netbeans.modules.php.editor.api.elements.ConstantElement
meth protected final org.netbeans.modules.php.editor.api.elements.ConstantElement getRealConstant()
meth public java.lang.String getValue()
supr org.netbeans.modules.php.editor.api.elements.AliasedElement
CLSS public org.netbeans.modules.php.editor.api.elements.AliasedElement
cons public init(org.netbeans.modules.php.editor.api.AliasedName,org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement)
fld protected final org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement element
innr public final static !enum Trait
intf org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement
meth public final boolean isAliased()
meth public final boolean isDeprecated()
meth public final boolean isNameAliased()
meth public final boolean isNamespaceNameAliased()
meth public final boolean isPlatform()
meth public final boolean signatureEquals(org.netbeans.modules.csl.api.ElementHandle)
meth public final int getFlags()
meth public final int getOffset()
meth public final java.lang.String getFilenameUrl()
meth public final java.lang.String getIn()
meth public final java.lang.String getMimeType()
meth public final java.lang.String getName()
meth public final java.lang.String getName(org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public final java.util.Set<org.netbeans.modules.csl.api.Modifier> getModifiers()
meth public final org.netbeans.modules.csl.api.ElementKind getKind()
meth public final org.netbeans.modules.csl.api.OffsetRange getOffsetRange(org.netbeans.modules.csl.spi.ParserResult)
meth public final org.netbeans.modules.php.editor.api.ElementQuery getElementQuery()
meth public final org.netbeans.modules.php.editor.api.PhpElementKind getPhpElementKind()
meth public final org.netbeans.modules.php.editor.api.PhpModifiers getPhpModifiers()
meth public final org.netbeans.modules.php.editor.api.QualifiedName getFullyQualifiedName()
meth public final org.netbeans.modules.php.editor.api.QualifiedName getFullyQualifiedName(org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public final org.netbeans.modules.php.editor.api.QualifiedName getNamespaceName()
meth public final org.netbeans.modules.php.editor.api.QualifiedName getNamespaceName(org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
meth public final org.openide.filesystems.FileObject getFileObject()
meth public org.netbeans.modules.php.editor.api.AliasedName getAliasedName()
meth public org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait getTrait()
meth public void setTrait(org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait)
supr java.lang.Object
hfds aliasFqn,aliasedName,trait
CLSS public final static !enum org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait
outer org.netbeans.modules.php.editor.api.elements.AliasedElement
fld public final static org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait ALIAS
fld public final static org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait ELEMENT
meth public static org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.api.elements.AliasedElement$Trait>
CLSS public org.netbeans.modules.php.editor.api.elements.AliasedFunction
cons public init(org.netbeans.modules.php.editor.api.AliasedName,org.netbeans.modules.php.editor.api.elements.FunctionElement)
intf org.netbeans.modules.php.editor.api.elements.FunctionElement
meth protected final org.netbeans.modules.php.editor.api.elements.FunctionElement getRealFunction()
meth public boolean isAnonymous()
meth public java.lang.String asString(org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs)
meth public java.lang.String asString(org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs,org.netbeans.modules.php.editor.api.elements.TypeNameResolver)
meth public java.lang.String asString(org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs,org.netbeans.modules.php.editor.api.elements.TypeNameResolver,org.netbeans.modules.php.api.PhpVersion)
meth public java.util.Collection<org.netbeans.modules.php.editor.api.elements.TypeResolver> getReturnTypes()
meth public java.util.List<org.netbeans.modules.php.editor.api.elements.ParameterElement> getParameters()
supr org.netbeans.modules.php.editor.api.elements.AliasedElement
CLSS public final org.netbeans.modules.php.editor.api.elements.AliasedInterface
cons public init(org.netbeans.modules.php.editor.api.AliasedName,org.netbeans.modules.php.editor.api.elements.InterfaceElement)
intf org.netbeans.modules.php.editor.api.elements.InterfaceElement
supr org.netbeans.modules.php.editor.api.elements.AliasedType
CLSS public org.netbeans.modules.php.editor.api.elements.AliasedNamespace
cons public init(org.netbeans.modules.php.editor.api.AliasedName,org.netbeans.modules.php.editor.api.elements.NamespaceElement)
intf org.netbeans.modules.php.editor.api.elements.NamespaceElement
supr org.netbeans.modules.php.editor.api.elements.AliasedElement
CLSS public org.netbeans.modules.php.editor.api.elements.AliasedTrait
cons public init(org.netbeans.modules.php.editor.api.AliasedName,org.netbeans.modules.php.editor.api.elements.TraitElement)
intf org.netbeans.modules.php.editor.api.elements.TraitElement
meth public java.util.Collection<org.netbeans.modules.php.editor.api.QualifiedName> getUsedTraits()
supr org.netbeans.modules.php.editor.api.elements.AliasedType
CLSS public org.netbeans.modules.php.editor.api.elements.AliasedType
cons protected init(org.netbeans.modules.php.editor.api.AliasedName,org.netbeans.modules.php.editor.api.elements.TypeElement)
intf org.netbeans.modules.php.editor.api.elements.TypeElement
meth protected final org.netbeans.modules.php.editor.api.elements.TypeElement getRealType()
meth public boolean isTraited()
meth public final boolean isClass()
meth public final boolean isInterface()
meth public final boolean isTrait()
meth public final java.lang.String asString(org.netbeans.modules.php.editor.api.elements.TypeElement$PrintAs)
meth public final java.util.Set<org.netbeans.modules.php.editor.api.QualifiedName> getSuperInterfaces()
meth public java.util.Collection<org.netbeans.modules.php.editor.api.QualifiedName> getFQSuperInterfaceNames()
supr org.netbeans.modules.php.editor.api.elements.AliasedElement
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.BaseFunctionElement
innr public final static !enum PrintAs
intf org.netbeans.modules.php.editor.api.elements.PhpElement
meth public abstract java.lang.String asString(org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs)
meth public abstract java.lang.String asString(org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs,org.netbeans.modules.php.editor.api.elements.TypeNameResolver)
meth public abstract java.lang.String asString(org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs,org.netbeans.modules.php.editor.api.elements.TypeNameResolver,org.netbeans.modules.php.api.PhpVersion)
meth public abstract java.util.Collection<org.netbeans.modules.php.editor.api.elements.TypeResolver> getReturnTypes()
meth public abstract java.util.List<org.netbeans.modules.php.editor.api.elements.ParameterElement> getParameters()
CLSS public final static !enum org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs
outer org.netbeans.modules.php.editor.api.elements.BaseFunctionElement
fld public final static org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs DeclarationWithEmptyBody
fld public final static org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs DeclarationWithParentCallInBody
fld public final static org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs DeclarationWithoutBody
fld public final static org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs NameAndParamsDeclaration
fld public final static org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs NameAndParamsInvocation
fld public final static org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs ReturnSemiTypes
fld public final static org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs ReturnTypes
meth public static org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.api.elements.BaseFunctionElement$PrintAs>
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.ClassElement
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind KIND
intf org.netbeans.modules.php.editor.api.elements.TraitedElement
meth public abstract boolean isAbstract()
meth public abstract boolean isAnonymous()
meth public abstract boolean isFinal()
meth public abstract java.util.Collection<org.netbeans.modules.php.editor.api.QualifiedName> getFQMixinClassNames()
meth public abstract java.util.Collection<org.netbeans.modules.php.editor.api.QualifiedName> getPossibleFQSuperClassNames()
meth public abstract org.netbeans.modules.php.editor.api.QualifiedName getSuperClassName()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.ConstantElement
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind KIND
intf org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement
meth public abstract java.lang.String getValue()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
CLSS public abstract org.netbeans.modules.php.editor.api.elements.ElementFilter
cons public init()
meth public !varargs static org.netbeans.modules.php.editor.api.elements.ElementFilter allOf(org.netbeans.modules.php.editor.api.elements.ElementFilter[])
meth public !varargs static org.netbeans.modules.php.editor.api.elements.ElementFilter anyOf(org.netbeans.modules.php.editor.api.elements.ElementFilter[])
meth public !varargs static org.netbeans.modules.php.editor.api.elements.ElementFilter forFiles(org.openide.filesystems.FileObject[])
meth public <%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement> java.util.Set<{%%0}> filter(java.util.Set<{%%0}>)
meth public <%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement> java.util.Set<{%%0}> filter({%%0})
meth public <%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement> java.util.Set<{%%0}> prefer(java.util.Set<{%%0}>)
meth public <%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement> java.util.Set<{%%0}> reverseFilter(java.util.Set<{%%0}>)
meth public abstract boolean isAccepted(org.netbeans.modules.php.editor.api.elements.PhpElement)
meth public static <%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement> org.netbeans.modules.php.editor.api.elements.ElementFilter forExcludedElements(java.util.Collection<{%%0}>)
meth public static <%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement> org.netbeans.modules.php.editor.api.elements.ElementFilter forInstanceOf(java.lang.Class<{%%0}>)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter allOf(java.util.Collection<org.netbeans.modules.php.editor.api.elements.ElementFilter>)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter anyOf(java.util.Collection<org.netbeans.modules.php.editor.api.elements.ElementFilter>)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forAllOfFlags(int)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forAnyOfFlags(int)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forConstructor()
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forDeprecated(boolean)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forEqualTypes(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forExcludedNames(java.util.Collection<java.lang.String>,org.netbeans.modules.php.editor.api.PhpElementKind)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forIncludedNames(java.util.Collection<java.lang.String>,org.netbeans.modules.php.editor.api.PhpElementKind)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forKind(org.netbeans.modules.php.editor.api.PhpElementKind)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forMembersOfClass()
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forMembersOfInterface()
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forMembersOfType(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forMembersOfTypeName(org.netbeans.modules.php.editor.api.NameKind)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forMembersOfTypeName(org.netbeans.modules.php.editor.api.elements.TypeElement)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forMembersOfTypes(java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeElement>)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forName(org.netbeans.modules.php.editor.api.NameKind)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forOffset(int)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forPrivateModifiers(boolean)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forPublicModifiers(boolean)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forStaticModifiers(boolean)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forSuperClassName(org.netbeans.modules.php.editor.api.QualifiedName)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forSuperInterfaceName(org.netbeans.modules.php.editor.api.QualifiedName)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forSuperInterfaceNames(java.util.Set<org.netbeans.modules.php.editor.api.QualifiedName>)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forTypesFromNamespace(org.netbeans.modules.php.editor.api.QualifiedName)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forTypesFromNamespaces(java.util.Set<org.netbeans.modules.php.editor.api.QualifiedName>)
meth public static org.netbeans.modules.php.editor.api.elements.ElementFilter forVirtualExtensions()
supr java.lang.Object
CLSS public abstract org.netbeans.modules.php.editor.api.elements.ElementTransformation<%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement>
cons public init()
meth public abstract {org.netbeans.modules.php.editor.api.elements.ElementTransformation%0} transform(org.netbeans.modules.php.editor.api.elements.PhpElement)
meth public final <%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement> java.util.Set<{org.netbeans.modules.php.editor.api.elements.ElementTransformation%0}> transform(java.util.Set<{%%0}>)
meth public static org.netbeans.modules.php.editor.api.elements.ElementTransformation<org.netbeans.modules.php.editor.api.elements.TypeElement> toMemberTypes()
meth public static org.netbeans.modules.php.editor.api.elements.ElementTransformation<org.netbeans.modules.php.editor.api.elements.VariableElement> fieldsToVariables()
supr java.lang.Object
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.FieldElement
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind KIND
intf org.netbeans.modules.php.editor.api.elements.TypeMemberElement
intf org.netbeans.modules.php.editor.api.elements.TypedInstanceElement
meth public abstract boolean isAnnotation()
meth public abstract java.lang.String getName(boolean)
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement
intf org.netbeans.modules.php.editor.api.elements.PhpElement
meth public abstract boolean isAliased()
meth public abstract org.netbeans.modules.php.editor.api.QualifiedName getFullyQualifiedName()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public abstract org.netbeans.modules.php.editor.api.QualifiedName getNamespaceName()
anno 0 org.netbeans.api.annotations.common.NonNull()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.FunctionElement
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind KIND
intf org.netbeans.modules.php.editor.api.elements.BaseFunctionElement
intf org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement
meth public abstract boolean isAnonymous()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.InterfaceElement
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind KIND
intf org.netbeans.modules.php.editor.api.elements.TypeElement
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.MethodElement
fld public final static java.lang.String CONSTRUCTOR_NAME = "__construct"
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind KIND
intf org.netbeans.modules.php.editor.api.elements.BaseFunctionElement
intf org.netbeans.modules.php.editor.api.elements.TypeMemberElement
meth public abstract boolean isConstructor()
meth public abstract boolean isMagic()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.NamespaceElement
fld public final static java.lang.String DEFAULT_NAMESPACE_NAME = ""
fld public final static java.lang.String NAMESPACE_SEPARATOR = "\u005c"
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind KIND
intf org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.ParameterElement
innr public final static !enum OutputType
meth public abstract boolean hasDeclaredType()
meth public abstract boolean isMandatory()
meth public abstract boolean isReference()
meth public abstract boolean isVariadic()
meth public abstract int getOffset()
meth public abstract java.lang.String asString(org.netbeans.modules.php.editor.api.elements.ParameterElement$OutputType)
meth public abstract java.lang.String asString(org.netbeans.modules.php.editor.api.elements.ParameterElement$OutputType,org.netbeans.modules.php.editor.api.elements.TypeNameResolver)
meth public abstract java.lang.String getDefaultValue()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public abstract java.lang.String getName()
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeResolver> getTypes()
meth public abstract org.netbeans.modules.csl.api.OffsetRange getOffsetRange()
CLSS public final static !enum org.netbeans.modules.php.editor.api.elements.ParameterElement$OutputType
outer org.netbeans.modules.php.editor.api.elements.ParameterElement
fld public final static org.netbeans.modules.php.editor.api.elements.ParameterElement$OutputType COMPLETE_DECLARATION
fld public final static org.netbeans.modules.php.editor.api.elements.ParameterElement$OutputType SHORTEN_DECLARATION
fld public final static org.netbeans.modules.php.editor.api.elements.ParameterElement$OutputType SIMPLE_NAME
meth public static org.netbeans.modules.php.editor.api.elements.ParameterElement$OutputType valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.elements.ParameterElement$OutputType[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.api.elements.ParameterElement$OutputType>
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.PhpElement
intf org.netbeans.modules.csl.api.ElementHandle
meth public abstract boolean isDeprecated()
meth public abstract boolean isPlatform()
meth public abstract int getFlags()
meth public abstract int getOffset()
meth public abstract java.lang.String getFilenameUrl()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public abstract org.netbeans.modules.php.editor.api.ElementQuery getElementQuery()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public abstract org.netbeans.modules.php.editor.api.PhpElementKind getPhpElementKind()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public abstract org.netbeans.modules.php.editor.api.PhpModifiers getPhpModifiers()
anno 0 org.netbeans.api.annotations.common.NonNull()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.TraitElement
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind KIND
intf org.netbeans.modules.php.editor.api.elements.TraitedElement
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.TraitedElement
intf org.netbeans.modules.php.editor.api.elements.TypeElement
meth public abstract java.util.Collection<org.netbeans.modules.php.editor.api.QualifiedName> getUsedTraits()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.TreeElement<%0 extends org.netbeans.modules.php.editor.api.elements.PhpElement>
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TreeElement<{org.netbeans.modules.php.editor.api.elements.TreeElement%0}>> children()
meth public abstract {org.netbeans.modules.php.editor.api.elements.TreeElement%0} getElement()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.TypeConstantElement
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind KIND
intf org.netbeans.modules.php.editor.api.elements.TypeMemberElement
meth public abstract boolean isMagic()
meth public abstract java.lang.String getValue()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.TypeElement
innr public final static !enum PrintAs
intf org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement
meth public abstract boolean isClass()
meth public abstract boolean isInterface()
meth public abstract boolean isTrait()
meth public abstract boolean isTraited()
meth public abstract java.lang.String asString(org.netbeans.modules.php.editor.api.elements.TypeElement$PrintAs)
meth public abstract java.util.Collection<org.netbeans.modules.php.editor.api.QualifiedName> getFQSuperInterfaceNames()
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.QualifiedName> getSuperInterfaces()
CLSS public final static !enum org.netbeans.modules.php.editor.api.elements.TypeElement$PrintAs
outer org.netbeans.modules.php.editor.api.elements.TypeElement
fld public final static org.netbeans.modules.php.editor.api.elements.TypeElement$PrintAs NameAndSuperTypes
fld public final static org.netbeans.modules.php.editor.api.elements.TypeElement$PrintAs SuperTypes
meth public static org.netbeans.modules.php.editor.api.elements.TypeElement$PrintAs valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.api.elements.TypeElement$PrintAs[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.api.elements.TypeElement$PrintAs>
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.TypeMemberElement
intf org.netbeans.modules.php.editor.api.elements.PhpElement
meth public abstract boolean isAbstract()
meth public abstract boolean isFinal()
meth public abstract boolean isPrivate()
meth public abstract boolean isProtected()
meth public abstract boolean isPublic()
meth public abstract boolean isStatic()
meth public abstract org.netbeans.modules.php.editor.api.elements.TypeElement getType()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.TypeNameResolver
meth public abstract org.netbeans.modules.php.editor.api.QualifiedName resolve(org.netbeans.modules.php.editor.api.QualifiedName)
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.TypeResolver
meth public abstract boolean canBeResolved()
meth public abstract boolean isNullableType()
meth public abstract boolean isResolved()
meth public abstract java.lang.String getRawTypeName()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public abstract org.netbeans.modules.php.editor.api.QualifiedName getTypeName(boolean)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.TypedInstanceElement
intf org.netbeans.modules.php.editor.api.elements.PhpElement
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeResolver> getInstanceFQTypes()
meth public abstract java.util.Set<org.netbeans.modules.php.editor.api.elements.TypeResolver> getInstanceTypes()
CLSS public abstract interface org.netbeans.modules.php.editor.api.elements.VariableElement
fld public final static org.netbeans.modules.php.editor.api.PhpElementKind KIND
intf org.netbeans.modules.php.editor.api.elements.PhpElement
intf org.netbeans.modules.php.editor.api.elements.TypedInstanceElement
meth public abstract java.lang.String getName(boolean)
CLSS public org.netbeans.modules.php.editor.lexer.DocumentorColoringScanner
cons public init(java.io.InputStream)
cons public init(java.io.Reader)
fld public final static int ST_HTML_TAG = 6
fld public final static int ST_IN_TAG = 2
fld public final static int ST_NO_TAG = 4
fld public final static int YYEOF = -1
fld public final static int YYINITIAL = 0
innr public LexerState
meth public final char yycharat(int)
meth public final int yylength()
meth public final int yystate()
meth public final java.lang.String yytext()
meth public final void yybegin(int)
meth public final void yyclose() throws java.io.IOException
meth public final void yyreset(java.io.Reader)
meth public int getTokenLength()
meth public org.netbeans.modules.php.editor.lexer.DocumentorColoringScanner$LexerState getState()
meth public org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId nextToken() throws java.io.IOException
meth public void setState(org.netbeans.modules.php.editor.lexer.DocumentorColoringScanner$LexerState)
meth public void yypushback(int)
supr java.lang.Object
hfds ZZ_ACTION,ZZ_ACTION_PACKED_0,ZZ_ATTRIBUTE,ZZ_ATTRIBUTE_PACKED_0,ZZ_BUFFERSIZE,ZZ_CMAP,ZZ_CMAP_PACKED,ZZ_ERROR_MSG,ZZ_LEXSTATE,ZZ_NO_MATCH,ZZ_PUSHBACK_2BIG,ZZ_ROWMAP,ZZ_ROWMAP_PACKED_0,ZZ_TRANS,ZZ_TRANS_PACKED_0,ZZ_UNKNOWN_ERROR,input,yychar,yycolumn,yyline,zzAtBOL,zzAtEOF,zzBuffer,zzCurrentPos,zzEndRead,zzLexicalState,zzMarkedPos,zzPushbackPos,zzReader,zzStartRead,zzState
CLSS public org.netbeans.modules.php.editor.lexer.DocumentorColoringScanner$LexerState
outer org.netbeans.modules.php.editor.lexer.DocumentorColoringScanner
supr java.lang.Object
hfds zzLexicalState,zzState
CLSS public final org.netbeans.modules.php.editor.lexer.GSFPHPLexer
intf org.netbeans.spi.lexer.Lexer<org.netbeans.modules.php.editor.lexer.PHPTokenId>
meth public java.lang.Object state()
meth public org.netbeans.api.lexer.Token<org.netbeans.modules.php.editor.lexer.PHPTokenId> nextToken()
meth public static org.netbeans.modules.php.editor.lexer.GSFPHPLexer create(org.netbeans.spi.lexer.LexerRestartInfo<org.netbeans.modules.php.editor.lexer.PHPTokenId>,boolean)
meth public void release()
supr java.lang.Object
hfds scanner,tokenFactory
CLSS public final org.netbeans.modules.php.editor.lexer.LexUtilities
innr public final static !enum LineBalance
meth public !varargs static boolean textEquals(java.lang.CharSequence,char[])
meth public static boolean isCommentOnlyLine(org.netbeans.editor.BaseDocument,int) throws javax.swing.text.BadLocationException
meth public static boolean isPHPOperator(org.netbeans.modules.php.editor.lexer.PHPTokenId)
meth public static char getTokenChar(org.netbeans.editor.BaseDocument,int)
meth public static int findStartTokenOfExpression(org.netbeans.api.lexer.TokenSequence)
meth public static int getLineBalance(org.netbeans.editor.BaseDocument,int,org.netbeans.api.lexer.TokenId,org.netbeans.api.lexer.TokenId,org.netbeans.modules.php.editor.lexer.LexUtilities$LineBalance)
meth public static int getTokenBalance(org.netbeans.editor.BaseDocument,char,char,int) throws javax.swing.text.BadLocationException
meth public static org.netbeans.api.lexer.Token<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId> findEndOfLine(org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>)
meth public static org.netbeans.api.lexer.Token<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId> findNext(org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>,java.util.List<org.netbeans.modules.php.editor.lexer.PHPTokenId>)
meth public static org.netbeans.api.lexer.Token<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId> findNextToken(org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>,java.util.List<org.netbeans.modules.php.editor.lexer.PHPTokenId>)
meth public static org.netbeans.api.lexer.Token<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId> findPrevious(org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>,java.util.List<org.netbeans.modules.php.editor.lexer.PHPTokenId>)
meth public static org.netbeans.api.lexer.Token<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId> findPreviousToken(org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>,java.util.List<org.netbeans.modules.php.editor.lexer.PHPTokenId>)
meth public static org.netbeans.api.lexer.Token<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId> getToken(org.netbeans.editor.BaseDocument,int)
meth public static org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.api.lexer.TokenId> getMostEmbeddedTokenSequence(javax.swing.text.Document,int,boolean)
meth public static org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId> getPositionedSequence(org.netbeans.editor.BaseDocument,int)
meth public static org.netbeans.api.lexer.TokenSequence<org.netbeans.modules.php.editor.lexer.PHPTokenId> getPHPTokenSequence(javax.swing.text.Document,int)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.api.lexer.TokenSequence<org.netbeans.modules.php.editor.lexer.PHPTokenId> getPHPTokenSequence(org.netbeans.api.lexer.TokenHierarchy<?>,int)
meth public static org.netbeans.modules.csl.api.OffsetRange findBegin(org.netbeans.editor.BaseDocument,org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>)
meth public static org.netbeans.modules.csl.api.OffsetRange findBwd(org.netbeans.editor.BaseDocument,org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>,org.netbeans.modules.php.editor.lexer.PHPTokenId,char,org.netbeans.modules.php.editor.lexer.PHPTokenId,char)
meth public static org.netbeans.modules.csl.api.OffsetRange findBwdAlternativeSyntax(org.netbeans.editor.BaseDocument,org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>,org.netbeans.api.lexer.Token<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>)
meth public static org.netbeans.modules.csl.api.OffsetRange findFwd(org.netbeans.editor.BaseDocument,org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>,org.netbeans.modules.php.editor.lexer.PHPTokenId,char,org.netbeans.modules.php.editor.lexer.PHPTokenId,char)
meth public static org.netbeans.modules.csl.api.OffsetRange findFwdAlternativeSyntax(org.netbeans.editor.BaseDocument,org.netbeans.api.lexer.TokenSequence<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>,org.netbeans.api.lexer.Token<? extends org.netbeans.modules.php.editor.lexer.PHPTokenId>)
supr java.lang.Object
CLSS public final static !enum org.netbeans.modules.php.editor.lexer.LexUtilities$LineBalance
outer org.netbeans.modules.php.editor.lexer.LexUtilities
fld public final static org.netbeans.modules.php.editor.lexer.LexUtilities$LineBalance DOWN_FIRST
fld public final static org.netbeans.modules.php.editor.lexer.LexUtilities$LineBalance PLAIN
fld public final static org.netbeans.modules.php.editor.lexer.LexUtilities$LineBalance UP_FIRST
meth public static org.netbeans.modules.php.editor.lexer.LexUtilities$LineBalance valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.lexer.LexUtilities$LineBalance[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.lexer.LexUtilities$LineBalance>
CLSS public org.netbeans.modules.php.editor.lexer.PHP5ColoringLexer
cons public init(java.io.InputStream)
cons public init(java.io.Reader)
cons public init(org.netbeans.spi.lexer.LexerRestartInfo,boolean,boolean,boolean)
fld public final static int ST_HALTED_COMPILER = 40
fld public final static int ST_PHP_BACKQUOTE = 6
fld public final static int ST_PHP_COMMENT = 32
fld public final static int ST_PHP_DOC_COMMENT = 34
fld public final static int ST_PHP_DOUBLE_QUOTES = 4
fld public final static int ST_PHP_END_HEREDOC = 16
fld public final static int ST_PHP_END_NOWDOC = 22
fld public final static int ST_PHP_HEREDOC = 12
fld public final static int ST_PHP_HIGHLIGHTING_ERROR = 38
fld public final static int ST_PHP_IN_SCRIPTING = 2
fld public final static int ST_PHP_LINE_COMMENT = 36
fld public final static int ST_PHP_LOOKING_FOR_CONSTANT_NAME = 28
fld public final static int ST_PHP_LOOKING_FOR_FUNCTION_NAME = 26
fld public final static int ST_PHP_LOOKING_FOR_PROPERTY = 24
fld public final static int ST_PHP_LOOKING_FOR_STATIC_PROPERTY = 10
fld public final static int ST_PHP_NOWDOC = 18
fld public final static int ST_PHP_QUOTES_AFTER_VARIABLE = 8
fld public final static int ST_PHP_START_HEREDOC = 14
fld public final static int ST_PHP_START_NOWDOC = 20
fld public final static int ST_PHP_VAR_OFFSET = 30
fld public final static int YYEOF = -1
fld public final static int YYINITIAL = 0
innr public final static LexerState
meth protected boolean isHeredocState(int)
meth protected int getZZEndRead()
meth protected int getZZLexicalState()
meth protected int getZZMarkedPos()
meth protected int getZZPushBackPosition()
meth protected int getZZStartRead()
meth protected void popState()
meth protected void pushBack(int)
meth protected void pushState(int)
meth public char[] getZZBuffer()
meth public final char yycharat(int)
meth public final int yylength()
meth public final int yystate()
meth public final java.lang.String yytext()
meth public final void yybegin(int)
meth public final void yyclose() throws java.io.IOException
meth public final void yyreset(java.io.Reader)
meth public int[] getParamenters()
meth public org.netbeans.modules.php.editor.lexer.PHP5ColoringLexer$LexerState getState()
meth public org.netbeans.modules.php.editor.lexer.PHPTokenId nextToken() throws java.io.IOException
meth public void setState(org.netbeans.modules.php.editor.lexer.PHP5ColoringLexer$LexerState)
meth public void yypushback(int)
supr java.lang.Object
hfds ZZ_ACTION,ZZ_ACTION_PACKED_0,ZZ_ATTRIBUTE,ZZ_ATTRIBUTE_PACKED_0,ZZ_BUFFERSIZE,ZZ_CMAP,ZZ_CMAP_PACKED,ZZ_ERROR_MSG,ZZ_LEXSTATE,ZZ_NO_MATCH,ZZ_PUSHBACK_2BIG,ZZ_ROWMAP,ZZ_ROWMAP_PACKED_0,ZZ_TRANS,ZZ_TRANS_PACKED_0,ZZ_UNKNOWN_ERROR,aspTagsAllowed,bracketBalanceInConst,heredoc,hereocLength,input,isInConst,parenBalanceInConst,shortTagsAllowed,stack,yychar,yycolumn,yyline,zzAtBOL,zzAtEOF,zzBuffer,zzCurrentPos,zzEndRead,zzLexicalState,zzMarkedPos,zzPushbackPos,zzReader,zzStartRead,zzState
CLSS public final static org.netbeans.modules.php.editor.lexer.PHP5ColoringLexer$LexerState
outer org.netbeans.modules.php.editor.lexer.PHP5ColoringLexer
meth public boolean equals(java.lang.Object)
meth public int hashCode()
supr java.lang.Object
hfds heredoc,hereocLength,stack,zzLexicalState,zzState
CLSS public final org.netbeans.modules.php.editor.lexer.PHPDocCommentLexer
cons public init(org.netbeans.spi.lexer.LexerRestartInfo<org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId>)
intf org.netbeans.spi.lexer.Lexer<org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId>
meth public java.lang.Object state()
meth public java.util.prefs.Preferences getDocscanPreferences()
meth public org.netbeans.api.lexer.Token<org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId> nextToken()
meth public void release()
supr java.lang.Object
hfds scanner,tokenFactory
CLSS public final !enum org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId
fld public final static java.lang.String MIME_TYPE = "text/x-php-doccomment"
fld public final static org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId PHPDOC_ANNOTATION
fld public final static org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId PHPDOC_COMMENT
fld public final static org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId PHPDOC_HTML_TAG
intf org.netbeans.api.lexer.TokenId
meth public java.lang.String fixedText()
meth public java.lang.String primaryCategory()
meth public static org.netbeans.api.lexer.Language<org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId> language()
meth public static org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.lexer.PHPDocCommentTokenId>
hfds LANGUAGE,fixedText,primaryCategory
CLSS public final !enum org.netbeans.modules.php.editor.lexer.PHPTokenId
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHPDOC_COMMENT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHPDOC_COMMENT_END
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHPDOC_COMMENT_START
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ABSTRACT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ARRAY
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_AS
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_BREAK
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CALLABLE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CASE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CASTING
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CATCH
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CLASS
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CLONE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CLOSETAG
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_COMMENT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_COMMENT_END
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_COMMENT_START
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CONST
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CONSTANT_ENCAPSED_STRING
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CONTINUE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CURLY_CLOSE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_CURLY_OPEN
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_DECLARE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_DEFAULT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_DIE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_DO
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ECHO
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ELSE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ELSEIF
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_EMPTY
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ENCAPSED_AND_WHITESPACE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ENDDECLARE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ENDFOR
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ENDFOREACH
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ENDIF
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ENDSWITCH
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ENDWHILE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_EVAL
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_EXIT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_EXTENDS
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_FALSE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_FINAL
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_FINALLY
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_FN
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_FOR
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_FOREACH
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_FUNCTION
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_GLOBAL
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_GOTO
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_HALT_COMPILER
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_HEREDOC_TAG_END
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_HEREDOC_TAG_START
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_IF
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_IMPLEMENTS
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_INCLUDE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_INCLUDE_ONCE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_INSTANCEOF
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_INSTEADOF
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_INTERFACE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ISSET
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_ITERABLE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_LINE_COMMENT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_LIST
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_LOGICAL_AND
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_LOGICAL_OR
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_LOGICAL_XOR
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_NAMESPACE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_NEW
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_NOT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_NOWDOC_TAG_END
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_NOWDOC_TAG_START
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_NS_SEPARATOR
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_NULL
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_NUMBER
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_OBJECT_OPERATOR
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_OPENTAG
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_OPERATOR
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_PAAMAYIM_NEKUDOTAYIM
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_PARENT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_PRINT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_PRIVATE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_PROTECTED
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_PUBLIC
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_REQUIRE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_REQUIRE_ONCE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_RETURN
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_SELF
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_SEMICOLON
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_STATIC
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_STRING
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_SWITCH
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TEXTUAL_OPERATOR
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_THROW
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TOKEN
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TRAIT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TRUE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TRY
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TYPE_BOOL
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TYPE_FLOAT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TYPE_INT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TYPE_OBJECT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TYPE_STRING
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_TYPE_VOID
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_UNSET
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_USE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_VAR
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_VARIABLE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_VAR_COMMENT
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_WHILE
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_YIELD
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP_YIELD_FROM
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP__CLASS__
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP__DIR__
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP__FILE__
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP__FUNCTION__
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP__LINE__
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP__METHOD__
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP__NAMESPACE__
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId PHP__TRAIT__
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId T_INLINE_HTML
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId T_OPEN_TAG_WITH_ECHO
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId UNKNOWN_TOKEN
fld public final static org.netbeans.modules.php.editor.lexer.PHPTokenId WHITESPACE
intf org.netbeans.api.lexer.TokenId
meth public java.lang.String fixedText()
meth public java.lang.String primaryCategory()
meth public static org.netbeans.api.lexer.Language<org.netbeans.modules.php.editor.lexer.PHPTokenId> language()
meth public static org.netbeans.api.lexer.Language<org.netbeans.modules.php.editor.lexer.PHPTokenId> languageInPHP()
meth public static org.netbeans.modules.php.editor.lexer.PHPTokenId valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.lexer.PHPTokenId[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.lexer.PHPTokenId>
hfds LANGUAGE_HIERARCHY,fixedText,primaryCategory
hcls PHPLanguageHierarchy
CLSS public final org.netbeans.modules.php.editor.lexer.PHPTopLexer
intf org.netbeans.spi.lexer.Lexer<org.netbeans.modules.php.editor.lexer.PHPTopTokenId>
meth public java.lang.Object state()
meth public org.netbeans.api.lexer.Token<org.netbeans.modules.php.editor.lexer.PHPTopTokenId> nextToken()
meth public static org.netbeans.modules.php.editor.lexer.PHPTopLexer create(org.netbeans.spi.lexer.LexerRestartInfo<org.netbeans.modules.php.editor.lexer.PHPTopTokenId>)
meth public void release()
supr java.lang.Object
hfds scanner,tokenFactory
hcls PHPTopColoringLexer,State
CLSS public final !enum org.netbeans.modules.php.editor.lexer.PHPTopTokenId
fld public final static org.netbeans.modules.php.editor.lexer.PHPTopTokenId T_HTML
fld public final static org.netbeans.modules.php.editor.lexer.PHPTopTokenId T_PHP
fld public final static org.netbeans.modules.php.editor.lexer.PHPTopTokenId T_PHP_CLOSE_DELIMITER
fld public final static org.netbeans.modules.php.editor.lexer.PHPTopTokenId T_PHP_OPEN_DELIMITER
intf org.netbeans.api.lexer.TokenId
meth public java.lang.String fixedText()
meth public java.lang.String primaryCategory()
meth public static org.netbeans.api.lexer.Language<org.netbeans.modules.php.editor.lexer.PHPTopTokenId> language()
meth public static org.netbeans.modules.php.editor.lexer.PHPTopTokenId valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.lexer.PHPTopTokenId[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.lexer.PHPTopTokenId>
hfds LANGUAGE,fixedText,primaryCategory
CLSS public abstract interface org.netbeans.modules.php.editor.model.ArrowFunctionScope
intf org.netbeans.modules.php.editor.model.FunctionScope
CLSS public abstract interface org.netbeans.modules.php.editor.model.ClassConstantElement
intf org.netbeans.modules.php.editor.model.ClassMemberElement
intf org.netbeans.modules.php.editor.model.ConstantElement
meth public abstract java.lang.String getValue()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
CLSS public abstract interface org.netbeans.modules.php.editor.model.ClassMemberElement
intf org.netbeans.modules.php.editor.model.ModelElement
CLSS public abstract interface org.netbeans.modules.php.editor.model.ClassScope
intf org.netbeans.modules.php.editor.api.elements.ClassElement
intf org.netbeans.modules.php.editor.model.TraitedScope
intf org.netbeans.modules.php.editor.model.TypeScope
intf org.netbeans.modules.php.editor.model.VariableScope
meth public abstract java.lang.String getDefaultConstructorIndexSignature()
meth public abstract java.util.Collection<? extends java.lang.String> getSuperClassNames()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.ClassScope> getSuperClasses()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.FieldElement> getDeclaredFields()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.FieldElement> getFields()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.FieldElement> getInheritedFields()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.MethodScope> getDeclaredConstructors()
CLSS public abstract interface org.netbeans.modules.php.editor.model.CodeMarker
meth public abstract boolean containsInclusive(int)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.CodeMarker> getAllMarkers()
meth public abstract void highlight(org.netbeans.modules.php.editor.model.OccurrenceHighlighter)
CLSS public abstract interface org.netbeans.modules.php.editor.model.ConstantElement
intf org.netbeans.modules.php.editor.model.ModelElement
meth public abstract java.lang.String getValue()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
CLSS public abstract interface org.netbeans.modules.php.editor.model.FieldElement
intf org.netbeans.modules.php.editor.model.ClassMemberElement
intf org.netbeans.modules.php.editor.model.TypeAssignments
meth public abstract boolean isAnnotation()
meth public abstract java.util.Collection<? extends java.lang.String> getDefaultTypeNames()
CLSS public abstract interface org.netbeans.modules.php.editor.model.FileScope
intf org.netbeans.modules.php.editor.model.Scope
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.NamespaceScope> getDeclaredNamespaces()
meth public abstract org.netbeans.modules.php.editor.model.IndexScope getIndexScope()
meth public abstract org.netbeans.modules.php.editor.model.NamespaceScope getDefaultDeclaredNamespace()
CLSS public final org.netbeans.modules.php.editor.model.FindUsageSupport
meth public java.util.Collection<org.netbeans.modules.php.editor.api.elements.MethodElement> overridingMethods()
meth public java.util.Collection<org.netbeans.modules.php.editor.api.elements.TypeElement> directSubclasses()
meth public java.util.Collection<org.netbeans.modules.php.editor.api.elements.TypeElement> subclasses()
meth public java.util.Collection<org.netbeans.modules.php.editor.model.Occurence> occurences(org.openide.filesystems.FileObject)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public java.util.Set<org.openide.filesystems.FileObject> inFiles()
meth public org.netbeans.modules.php.editor.model.ModelElement elementToFind()
meth public static org.netbeans.modules.php.editor.model.FindUsageSupport getInstance(org.netbeans.modules.php.editor.api.ElementQuery$Index,org.netbeans.modules.php.editor.model.ModelElement)
supr java.lang.Object
hfds element,files,index
CLSS public abstract interface org.netbeans.modules.php.editor.model.FunctionScope
intf org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement
intf org.netbeans.modules.php.editor.model.Scope
intf org.netbeans.modules.php.editor.model.VariableScope
meth public abstract boolean isAnonymous()
meth public abstract java.util.Collection<? extends java.lang.String> getReturnTypeNames()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> getReturnTypes()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> getReturnTypes(boolean,java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope>)
meth public abstract java.util.List<? extends java.lang.String> getParameterNames()
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.api.elements.ParameterElement> getParameters()
CLSS public abstract interface org.netbeans.modules.php.editor.model.GroupUseScope
intf org.netbeans.modules.php.editor.model.Scope
meth public abstract java.util.List<org.netbeans.modules.php.editor.model.UseScope> getUseScopes()
meth public abstract org.netbeans.modules.php.editor.model.UseScope$Type getType()
CLSS public abstract interface org.netbeans.modules.php.editor.model.IncludeElement
intf org.netbeans.modules.php.editor.model.ModelElement
meth public abstract org.netbeans.modules.csl.api.OffsetRange getReferenceSpanRange()
CLSS public abstract interface org.netbeans.modules.php.editor.model.IndexScope
intf org.netbeans.modules.php.editor.model.Scope
meth public abstract !varargs java.util.List<? extends org.netbeans.modules.php.editor.model.FieldElement> findFields(org.netbeans.modules.php.editor.model.ClassScope,int[])
meth public abstract !varargs java.util.List<? extends org.netbeans.modules.php.editor.model.FieldElement> findFields(org.netbeans.modules.php.editor.model.ClassScope,java.lang.String,int[])
meth public abstract !varargs java.util.List<? extends org.netbeans.modules.php.editor.model.FieldElement> findFields(org.netbeans.modules.php.editor.model.TraitScope,int[])
meth public abstract !varargs java.util.List<? extends org.netbeans.modules.php.editor.model.FieldElement> findFields(org.netbeans.modules.php.editor.model.TraitScope,java.lang.String,int[])
meth public abstract !varargs java.util.List<? extends org.netbeans.modules.php.editor.model.MethodScope> findMethods(org.netbeans.modules.php.editor.model.TypeScope,java.lang.String,int[])
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.ClassConstantElement> findClassConstants(org.netbeans.modules.php.editor.model.TypeScope)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.ClassConstantElement> findClassConstants(org.netbeans.modules.php.editor.model.TypeScope,java.lang.String)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.ClassConstantElement> findInheritedClassConstants(org.netbeans.modules.php.editor.model.ClassScope,java.lang.String)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.ClassScope> findClasses(org.netbeans.modules.php.editor.api.QualifiedName)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.ConstantElement> findConstants(org.netbeans.modules.php.editor.api.QualifiedName)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.FieldElement> findInheritedFields(org.netbeans.modules.php.editor.model.ClassScope,java.lang.String)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.FunctionScope> findFunctions(org.netbeans.modules.php.editor.api.QualifiedName)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.InterfaceScope> findInterfaces(org.netbeans.modules.php.editor.api.QualifiedName)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.MethodScope> findInheritedMethods(org.netbeans.modules.php.editor.model.TypeScope,java.lang.String)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.MethodScope> findMethods(org.netbeans.modules.php.editor.model.TypeScope)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.TraitScope> findTraits(org.netbeans.modules.php.editor.api.QualifiedName)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.TypeScope> findTypes(org.netbeans.modules.php.editor.api.QualifiedName)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.VariableName> findVariables(java.lang.String)
meth public abstract org.netbeans.modules.php.editor.api.ElementQuery$Index getIndex()
CLSS public abstract interface org.netbeans.modules.php.editor.model.InterfaceScope
intf org.netbeans.modules.php.editor.api.elements.InterfaceElement
intf org.netbeans.modules.php.editor.model.TypeScope
intf org.netbeans.modules.php.editor.model.VariableScope
CLSS public abstract interface org.netbeans.modules.php.editor.model.MethodScope
intf org.netbeans.modules.php.editor.model.ClassMemberElement
intf org.netbeans.modules.php.editor.model.FunctionScope
intf org.netbeans.modules.php.editor.model.VariableScope
meth public abstract boolean isConstructor()
meth public abstract boolean isInitiator()
meth public abstract boolean isMagic()
meth public abstract java.lang.String getClassSkeleton()
meth public abstract java.lang.String getConstructorIndexSignature()
meth public abstract java.lang.String getInterfaceSkeleton()
meth public abstract org.netbeans.modules.php.editor.model.TypeScope getTypeScope()
CLSS public final org.netbeans.modules.php.editor.model.Model
innr public abstract static !enum Type
meth public java.util.List<org.netbeans.modules.php.api.editor.PhpBaseElement> getExtendedElements()
meth public org.netbeans.modules.php.editor.model.FileScope getFileScope()
meth public org.netbeans.modules.php.editor.model.IndexScope getIndexScope()
meth public org.netbeans.modules.php.editor.model.ModelElement findDeclaration(org.netbeans.modules.php.editor.api.elements.PhpElement)
meth public org.netbeans.modules.php.editor.model.OccurencesSupport getOccurencesSupport(int)
meth public org.netbeans.modules.php.editor.model.OccurencesSupport getOccurencesSupport(org.netbeans.modules.csl.api.OffsetRange)
meth public org.netbeans.modules.php.editor.model.ParameterInfoSupport getParameterInfoSupport(int)
meth public org.netbeans.modules.php.editor.model.VariableScope getVariableScope(int)
meth public org.netbeans.modules.php.editor.model.VariableScope getVariableScopeForNamedElement(int)
supr java.lang.Object
hfds LOGGER,info,modelVisitor,occurencesSupport
CLSS public abstract static !enum org.netbeans.modules.php.editor.model.Model$Type
outer org.netbeans.modules.php.editor.model.Model
fld public final static org.netbeans.modules.php.editor.model.Model$Type COMMON
fld public final static org.netbeans.modules.php.editor.model.Model$Type EXTENDED
meth public abstract void process(org.netbeans.modules.php.editor.model.Model)
meth public static org.netbeans.modules.php.editor.model.Model$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.model.Model$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.model.Model$Type>
CLSS public abstract interface org.netbeans.modules.php.editor.model.ModelElement
intf org.netbeans.modules.php.editor.api.elements.PhpElement
meth public abstract org.netbeans.modules.csl.api.ElementHandle getPHPElement()
meth public abstract org.netbeans.modules.csl.api.OffsetRange getNameRange()
meth public abstract org.netbeans.modules.php.editor.api.QualifiedName getNamespaceName()
meth public abstract org.netbeans.modules.php.editor.model.Scope getInScope()
meth public abstract org.openide.util.Union2<java.lang.String,org.openide.filesystems.FileObject> getFile()
meth public abstract void addSelfToIndex(org.netbeans.modules.parsing.spi.indexing.support.IndexDocument)
CLSS public final org.netbeans.modules.php.editor.model.ModelFactory
meth public static org.netbeans.modules.php.editor.model.Model getModel(org.netbeans.modules.php.editor.parser.PHPParseResult)
anno 0 org.netbeans.api.annotations.common.NonNull()
supr java.lang.Object
CLSS public final org.netbeans.modules.php.editor.model.ModelUtils
innr public abstract interface static ElementFilter
meth public !varargs static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> java.util.Collection<? extends {%%0}> merge(java.util.Collection<? extends {%%0}>[])
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public !varargs static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> java.util.List<? extends {%%0}> filter(java.util.Collection<{%%0}>,java.lang.String[])
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public !varargs static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> java.util.List<? extends {%%0}> filter(java.util.Collection<{%%0}>,org.netbeans.modules.parsing.spi.indexing.support.QuerySupport$Kind,java.lang.String[])
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public !varargs static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> {%%0} getFirst(java.util.Collection<{%%0}>,java.lang.String[])
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public !varargs static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> {%%0} getFirst(java.util.Collection<{%%0}>,org.netbeans.modules.parsing.spi.indexing.support.QuerySupport$Kind,java.lang.String[])
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public !varargs static boolean nameKindMatch(java.lang.String,org.netbeans.modules.parsing.spi.indexing.support.QuerySupport$Kind,java.lang.String[])
meth public static <%0 extends java.lang.Object> {%%0} getFirst(java.util.Collection<? extends {%%0}>)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> java.util.List<? extends {%%0}> filter(java.util.Collection<? extends {%%0}>,org.netbeans.modules.php.editor.model.ModelUtils$ElementFilter<{%%0}>)
meth public static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> java.util.List<? extends {%%0}> filter(java.util.Collection<? extends {%%0}>,org.openide.filesystems.FileObject)
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> java.util.List<? extends {%%0}> filter(java.util.Collection<{%%0}>,org.netbeans.modules.parsing.spi.indexing.support.QuerySupport$Kind,org.netbeans.modules.php.editor.api.QualifiedName)
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> java.util.List<? extends {%%0}> filter(java.util.Collection<{%%0}>,org.netbeans.modules.php.editor.api.QualifiedName)
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> {%%0} getFirst(java.util.Collection<? extends {%%0}>,org.openide.filesystems.FileObject)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static <%0 extends org.netbeans.modules.php.editor.model.ModelElement> {%%0} getLast(java.util.List<? extends {%%0}>)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static boolean isAnonymousFunction(org.netbeans.modules.php.editor.model.Scope)
meth public static java.lang.String getCamelCaseName(org.netbeans.modules.php.editor.model.ModelElement)
meth public static java.lang.String toCamelCase(java.lang.String)
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.ClassScope> getDeclaredClasses(org.netbeans.modules.php.editor.model.FileScope)
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.ConstantElement> getDeclaredConstants(org.netbeans.modules.php.editor.model.FileScope)
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.FunctionScope> getDeclaredFunctions(org.netbeans.modules.php.editor.model.FileScope)
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.InterfaceScope> getDeclaredInterfaces(org.netbeans.modules.php.editor.model.FileScope)
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.TraitScope> getDeclaredTraits(org.netbeans.modules.php.editor.model.FileScope)
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> getDeclaredTypes(org.netbeans.modules.php.editor.model.FileScope)
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> resolveType(org.netbeans.modules.php.editor.model.Model,int)
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> resolveType(org.netbeans.modules.php.editor.model.Model,org.netbeans.modules.php.editor.parser.astnodes.Assignment)
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> resolveType(org.netbeans.modules.php.editor.model.Model,org.netbeans.modules.php.editor.parser.astnodes.StaticDispatch)
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> resolveType(org.netbeans.modules.php.editor.model.Model,org.netbeans.modules.php.editor.parser.astnodes.VariableBase)
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> resolveType(org.netbeans.modules.php.editor.model.Model,org.netbeans.modules.php.editor.parser.astnodes.VariableBase,boolean)
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> resolveTypeAfterReferenceToken(org.netbeans.modules.php.editor.model.Model,org.netbeans.api.lexer.TokenSequence<org.netbeans.modules.php.editor.lexer.PHPTokenId>,int,boolean)
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public static java.util.Collection<? extends org.netbeans.modules.php.editor.model.VariableName> getDeclaredVariables(org.netbeans.modules.php.editor.model.FileScope)
meth public static java.util.List<? extends org.netbeans.modules.php.editor.model.ModelElement> getElements(org.netbeans.modules.php.editor.model.Scope,boolean)
meth public static java.util.Set<org.netbeans.modules.php.editor.api.AliasedName> getAliasedNames(org.netbeans.modules.php.editor.model.Model,int)
meth public static org.netbeans.modules.php.editor.model.ClassScope getClassScope(org.netbeans.modules.php.editor.model.ModelElement)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.modules.php.editor.model.FileScope getFileScope(org.netbeans.modules.php.editor.model.ModelElement)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.modules.php.editor.model.FileScope getFileScope(org.openide.filesystems.FileObject)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.modules.php.editor.model.FileScope getFileScope(org.openide.filesystems.FileObject,int)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.modules.php.editor.model.IndexScope getIndexScope(org.netbeans.modules.php.editor.model.ModelElement)
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public static org.netbeans.modules.php.editor.model.Model getModel(org.netbeans.modules.parsing.api.Source)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.modules.php.editor.model.Model getModel(org.netbeans.modules.parsing.api.Source,int)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.modules.php.editor.model.NamespaceScope getNamespaceScope(org.netbeans.modules.php.editor.model.FileScope,int)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.modules.php.editor.model.NamespaceScope getNamespaceScope(org.netbeans.modules.php.editor.model.ModelElement)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.modules.php.editor.model.NamespaceScope getNamespaceScope(org.netbeans.modules.php.editor.parser.astnodes.NamespaceDeclaration,org.netbeans.modules.php.editor.model.FileScope)
meth public static org.netbeans.modules.php.editor.model.TypeScope getTypeScope(org.netbeans.modules.php.editor.model.ModelElement)
anno 0 org.netbeans.api.annotations.common.CheckForNull()
supr java.lang.Object
hfds LOGGER,RP
CLSS public abstract interface static org.netbeans.modules.php.editor.model.ModelUtils$ElementFilter<%0 extends org.netbeans.modules.php.editor.model.ModelElement>
outer org.netbeans.modules.php.editor.model.ModelUtils
meth public abstract boolean isAccepted({org.netbeans.modules.php.editor.model.ModelUtils$ElementFilter%0})
CLSS public abstract interface org.netbeans.modules.php.editor.model.NamespaceScope
intf org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement
intf org.netbeans.modules.php.editor.model.VariableScope
meth public abstract boolean isDefaultNamespace()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.ClassScope> getDeclaredClasses()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.ConstantElement> getDeclaredConstants()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.FunctionScope> getDeclaredFunctions()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.GroupUseScope> getDeclaredGroupUses()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.InterfaceScope> getDeclaredInterfaces()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.TraitScope> getDeclaredTraits()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> getDeclaredTypes()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.UseScope> getAllDeclaredSingleUses()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.UseScope> getDeclaredSingleUses()
meth public abstract org.netbeans.modules.php.editor.api.QualifiedName getQualifiedName()
meth public abstract org.netbeans.modules.php.editor.model.FileScope getFileScope()
CLSS public abstract interface org.netbeans.modules.php.editor.model.Occurence
innr public final static !enum Accuracy
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.api.elements.PhpElement> getAllDeclarations()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.api.elements.PhpElement> gotoDeclarations()
meth public abstract java.util.Collection<org.netbeans.modules.php.editor.model.Occurence> getAllOccurences()
meth public abstract org.netbeans.modules.csl.api.OffsetRange getOccurenceRange()
meth public abstract org.netbeans.modules.php.editor.api.PhpElementKind getKind()
meth public abstract org.netbeans.modules.php.editor.model.Occurence$Accuracy degreeOfAccuracy()
CLSS public final static !enum org.netbeans.modules.php.editor.model.Occurence$Accuracy
outer org.netbeans.modules.php.editor.model.Occurence
fld public final static org.netbeans.modules.php.editor.model.Occurence$Accuracy EXACT
fld public final static org.netbeans.modules.php.editor.model.Occurence$Accuracy EXACT_TYPE
fld public final static org.netbeans.modules.php.editor.model.Occurence$Accuracy MORE
fld public final static org.netbeans.modules.php.editor.model.Occurence$Accuracy MORE_MEMBERS
fld public final static org.netbeans.modules.php.editor.model.Occurence$Accuracy MORE_TYPES
fld public final static org.netbeans.modules.php.editor.model.Occurence$Accuracy NO
fld public final static org.netbeans.modules.php.editor.model.Occurence$Accuracy UNIQUE
meth public static org.netbeans.modules.php.editor.model.Occurence$Accuracy valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.model.Occurence$Accuracy[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.model.Occurence$Accuracy>
CLSS public final org.netbeans.modules.php.editor.model.OccurencesSupport
meth public org.netbeans.modules.php.editor.model.CodeMarker getCodeMarker()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public org.netbeans.modules.php.editor.model.Occurence getOccurence()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
supr java.lang.Object
hfds codeMarker,modelVisitor,occurence,offset
CLSS public abstract interface org.netbeans.modules.php.editor.model.OccurrenceHighlighter
fld public final static org.netbeans.modules.php.editor.model.OccurrenceHighlighter NONE
meth public abstract java.util.Set<org.netbeans.modules.csl.api.OffsetRange> getRanges()
meth public abstract void add(org.netbeans.modules.csl.api.OffsetRange)
CLSS public abstract interface org.netbeans.modules.php.editor.model.Parameter
meth public abstract boolean hasRawType()
meth public abstract boolean isMandatory()
meth public abstract boolean isReference()
meth public abstract boolean isVariadic()
meth public abstract java.lang.String getDefaultValue()
meth public abstract java.lang.String getIndexSignature()
meth public abstract java.lang.String getName()
meth public abstract java.util.List<org.netbeans.modules.php.editor.api.QualifiedName> getTypes()
meth public abstract org.netbeans.modules.csl.api.OffsetRange getOffsetRange()
CLSS public org.netbeans.modules.php.editor.model.ParameterInfoSupport
meth public org.netbeans.modules.csl.api.ParameterInfo getParameterInfo()
supr java.lang.Object
hfds CTX_DELIMITERS,modelVisitor,offset
hcls State
CLSS public abstract interface org.netbeans.modules.php.editor.model.Scope
intf org.netbeans.modules.php.editor.model.ModelElement
meth public abstract java.lang.String getNormalizedName()
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.ModelElement> getElements()
meth public abstract org.netbeans.modules.csl.api.OffsetRange getBlockRange()
CLSS public abstract interface org.netbeans.modules.php.editor.model.TraitScope
intf org.netbeans.modules.php.editor.api.elements.TraitElement
intf org.netbeans.modules.php.editor.model.TraitedScope
intf org.netbeans.modules.php.editor.model.TypeScope
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.FieldElement> getDeclaredFields()
CLSS public abstract interface org.netbeans.modules.php.editor.model.TraitedScope
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.TraitScope> getTraits()
CLSS public abstract interface org.netbeans.modules.php.editor.model.TypeAssignments
meth public abstract java.util.Collection<? extends java.lang.String> getTypeNames(int)
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> getArrayAccessTypes(int)
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> getFieldTypes(org.netbeans.modules.php.editor.model.FieldElement,int)
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.TypeScope> getTypes(int)
CLSS public abstract interface org.netbeans.modules.php.editor.model.TypeScope
intf org.netbeans.modules.php.editor.api.elements.FullyQualifiedElement
intf org.netbeans.modules.php.editor.api.elements.TypeElement
intf org.netbeans.modules.php.editor.model.Scope
meth public abstract boolean isSubTypeOf(org.netbeans.modules.php.editor.model.TypeScope)
meth public abstract boolean isSuperTypeOf(org.netbeans.modules.php.editor.model.TypeScope)
meth public abstract java.lang.String getIndexSignature()
meth public abstract java.util.Collection<? extends java.lang.String> getSuperInterfaceNames()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.ClassConstantElement> getDeclaredConstants()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.ClassConstantElement> getInheritedConstants()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.InterfaceScope> getSuperInterfaceScopes()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.MethodScope> getDeclaredMethods()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.MethodScope> getInheritedMethods()
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.MethodScope> getMethods()
CLSS public abstract interface org.netbeans.modules.php.editor.model.UseAliasElement
intf org.netbeans.modules.php.editor.model.ModelElement
CLSS public abstract interface org.netbeans.modules.php.editor.model.UseScope
innr public final static !enum Type
intf org.netbeans.modules.php.editor.model.Scope
meth public abstract boolean isPartOfGroupUse()
meth public abstract org.netbeans.modules.php.editor.api.AliasedName getAliasedName()
meth public abstract org.netbeans.modules.php.editor.model.UseAliasElement getAliasElement()
meth public abstract org.netbeans.modules.php.editor.model.UseScope$Type getType()
CLSS public final static !enum org.netbeans.modules.php.editor.model.UseScope$Type
outer org.netbeans.modules.php.editor.model.UseScope
fld public final static org.netbeans.modules.php.editor.model.UseScope$Type CONST
fld public final static org.netbeans.modules.php.editor.model.UseScope$Type FUNCTION
fld public final static org.netbeans.modules.php.editor.model.UseScope$Type TYPE
meth public java.lang.String toString()
meth public static org.netbeans.modules.php.editor.model.UseScope$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.model.UseScope$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.model.UseScope$Type>
hfds type
CLSS public abstract interface org.netbeans.modules.php.editor.model.VariableName
intf org.netbeans.modules.php.editor.model.ModelElement
intf org.netbeans.modules.php.editor.model.TypeAssignments
meth public abstract boolean isGloballyVisible()
meth public abstract boolean representsThis()
meth public abstract org.openide.filesystems.FileObject getRealFileObject()
CLSS public abstract interface org.netbeans.modules.php.editor.model.VariableScope
intf org.netbeans.modules.php.editor.model.Scope
meth public abstract java.util.Collection<? extends org.netbeans.modules.php.editor.model.VariableName> getDeclaredVariables()
CLSS public final org.netbeans.modules.php.editor.model.VariableScopeFinder
innr public abstract interface static ScopeRangeAcceptor
innr public abstract interface static VariableScopeWrapper
meth public org.netbeans.modules.php.editor.model.VariableScope find(java.util.List<? extends org.netbeans.modules.php.editor.model.ModelElement>,int,org.netbeans.modules.php.editor.model.VariableScopeFinder$ScopeRangeAcceptor)
meth public org.netbeans.modules.php.editor.model.VariableScope find(org.netbeans.modules.php.editor.model.Scope,int,org.netbeans.modules.php.editor.model.VariableScopeFinder$ScopeRangeAcceptor)
meth public org.netbeans.modules.php.editor.model.VariableScope findNearestVarScope(org.netbeans.modules.php.editor.model.Scope,int,org.netbeans.modules.php.editor.model.VariableScope)
meth public static org.netbeans.modules.php.editor.model.VariableScopeFinder create()
supr java.lang.Object
hcls VariableScopeWrapperImpl
CLSS public abstract interface static org.netbeans.modules.php.editor.model.VariableScopeFinder$ScopeRangeAcceptor
outer org.netbeans.modules.php.editor.model.VariableScopeFinder
fld public final static org.netbeans.modules.php.editor.model.VariableScopeFinder$ScopeRangeAcceptor BLOCK
fld public final static org.netbeans.modules.php.editor.model.VariableScopeFinder$ScopeRangeAcceptor NAME_START_BLOCK_END
meth public abstract boolean accept(org.netbeans.modules.php.editor.model.VariableScopeFinder$VariableScopeWrapper,int)
meth public abstract boolean overlaps(org.netbeans.modules.php.editor.model.VariableScopeFinder$VariableScopeWrapper,org.netbeans.modules.php.editor.model.VariableScopeFinder$VariableScopeWrapper)
CLSS public abstract interface static org.netbeans.modules.php.editor.model.VariableScopeFinder$VariableScopeWrapper
outer org.netbeans.modules.php.editor.model.VariableScopeFinder
fld public final static org.netbeans.modules.php.editor.model.VariableScopeFinder$VariableScopeWrapper NONE
meth public abstract boolean overlaps(org.netbeans.modules.php.editor.model.VariableScopeFinder$VariableScopeWrapper)
meth public abstract java.util.List<? extends org.netbeans.modules.php.editor.model.ModelElement> getElements()
meth public abstract org.netbeans.modules.csl.api.OffsetRange getBlockRange()
meth public abstract org.netbeans.modules.csl.api.OffsetRange getNameRange()
meth public abstract org.netbeans.modules.php.editor.model.VariableScope getVariableScope()
CLSS public org.netbeans.modules.php.editor.parser.ASTPHP5Parser
cons public init()
cons public init(java_cup.runtime.Scanner)
cons public init(java_cup.runtime.Scanner,java_cup.runtime.SymbolFactory)
fld protected final static java.lang.Integer ABSTRACT
fld protected final static java.lang.Integer FINAL
fld protected final static java.lang.Integer IMPLICIT_PUBLIC
fld protected final static java.lang.Integer PRIVATE
fld protected final static java.lang.Integer PROTECTED
fld protected final static java.lang.Integer PUBLIC
fld protected final static java.lang.Integer STATIC
fld protected final static short[][] _action_table
fld protected final static short[][] _production_table
fld protected final static short[][] _reduce_table
fld protected java.lang.Object action_obj
meth protected boolean error_recovery(boolean) throws java.lang.Exception
meth protected int error_sync_size()
meth protected void init_actions()
meth public int EOF_sym()
meth public int error_sym()
meth public int incrementAndGetAnonymousClassCounter()
meth public int start_production()
meth public int start_state()
meth public java.lang.String getFileName()
meth public java_cup.runtime.Symbol do_action(int,java_cup.runtime.lr_parser,java.util.Stack,int) throws java.lang.Exception
meth public org.netbeans.modules.php.editor.parser.ParserErrorHandler getErrorHandler()
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase createDispatch(boolean,org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.netbeans.modules.php.editor.parser.astnodes.Expression,int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,int,java.util.List,java.util.List)
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase createDispatch(org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.netbeans.modules.php.editor.parser.astnodes.VariableBase)
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase createDispatch(org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.netbeans.modules.php.editor.parser.astnodes.VariableBase,java.util.List)
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase createDispatch(org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.openide.util.Pair<org.netbeans.modules.php.editor.parser.astnodes.Expression,java.lang.Boolean>,java.util.List)
meth public org.openide.util.Pair<org.netbeans.modules.php.editor.parser.astnodes.Expression,java.lang.Boolean> createDispatchProperty(boolean,org.netbeans.modules.php.editor.parser.astnodes.Expression,int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,int,java.util.List)
meth public short[][] action_table()
meth public short[][] production_table()
meth public short[][] reduce_table()
meth public void report_error(java.lang.String,java.lang.Object)
meth public void report_fatal_error(java.lang.String,java.lang.Object) throws java.lang.Exception
meth public void setErrorHandler(org.netbeans.modules.php.editor.parser.ParserErrorHandler)
meth public void setFileName(java.lang.String)
meth public void syntax_error(java_cup.runtime.Symbol)
supr java_cup.runtime.lr_parser
hfds anonymousClassCounter,defaultStrategy,errorHandler,errorStrategy,fileName
hcls DefaultErrorStrategy,ErrorStrategy
CLSS public org.netbeans.modules.php.editor.parser.ASTPHP5Scanner
cons public init(java.io.InputStream)
cons public init(java.io.Reader)
cons public init(java.io.Reader,boolean,boolean)
fld protected int commentStartPosition
fld public final static int ST_BACKQUOTE = 6
fld public final static int ST_COMMENT = 26
fld public final static int ST_DOCBLOCK = 28
fld public final static int ST_DOUBLE_QUOTES = 4
fld public final static int ST_END_HEREDOC = 12
fld public final static int ST_END_NOWDOC = 18
fld public final static int ST_HALTED_COMPILER = 34
fld public final static int ST_HEREDOC = 8
fld public final static int ST_IN_SCRIPTING = 2
fld public final static int ST_IN_SHORT_ECHO = 32
fld public final static int ST_LOOKING_FOR_PROPERTY = 20
fld public final static int ST_LOOKING_FOR_VARNAME = 22
fld public final static int ST_NOWDOC = 14
fld public final static int ST_ONE_LINE_COMMENT = 30
fld public final static int ST_START_HEREDOC = 10
fld public final static int ST_START_NOWDOC = 16
fld public final static int ST_VAR_OFFSET = 24
fld public final static int YYEOF = -1
fld public final static int YYINITIAL = 0
intf java_cup.runtime.Scanner
meth protected int getTokenLength()
meth protected int getTokenStartPosition()
meth protected void addComment(org.netbeans.modules.php.editor.parser.astnodes.Comment$Type)
meth public boolean isEndedPhp()
meth public boolean useAspTagsAsPhp()
meth public final char yycharat(int)
meth public final int yylength()
meth public final int yystate()
meth public final java.lang.String yytext()
meth public final void yybegin(int)
meth public final void yyclose() throws java.io.IOException
meth public final void yyreset(java.io.Reader)
meth public int getCurlyBalance()
meth public int getCurrentLine()
meth public int getLength()
meth public int getState()
meth public int getWhitespaceEndPosition()
meth public int[] getParamenters()
meth public java.util.List getCommentList()
meth public java_cup.runtime.Symbol next_token() throws java.io.IOException
meth public void reset(java.io.Reader)
meth public void reset(java.io.Reader,char[],int[])
meth public void resetCommentList()
meth public void setInScriptingState()
meth public void setState(int)
meth public void setUseAspTagsAsPhp(boolean)
meth public void yypushback(int)
supr java.lang.Object
hfds ZZ_ACTION,ZZ_ACTION_PACKED_0,ZZ_ATTRIBUTE,ZZ_ATTRIBUTE_PACKED_0,ZZ_BUFFERSIZE,ZZ_CMAP,ZZ_CMAP_PACKED,ZZ_ERROR_MSG,ZZ_LEXSTATE,ZZ_NO_MATCH,ZZ_PUSHBACK_2BIG,ZZ_ROWMAP,ZZ_ROWMAP_PACKED_0,ZZ_TRANS,ZZ_TRANS_PACKED_0,ZZ_UNKNOWN_ERROR,asp_tags,bracket,comment,commentList,docParser,heredoc,heredocBody,heredocBodyLength,heredocBodyStart,isEndedPhp,nowdoc,nowdocBody,nowdocBodyLength,nowdocBodyStart,nowdoc_len,short_tags_allowed,stack,varParser,whitespaceEndPosition,yy_old_buffer,yy_old_pushbackPos,yychar,yycolumn,yyline,zzAtBOL,zzAtEOF,zzBuffer,zzCurrentPos,zzEndRead,zzLexicalState,zzMarkedPos,zzPushbackPos,zzReader,zzStartRead,zzState
CLSS public abstract interface org.netbeans.modules.php.editor.parser.ASTPHP5Symbols
fld public final static int EOF = 0
fld public final static int T_ABSTRACT = 143
fld public final static int T_AND_EQUAL = 95
fld public final static int T_ARRAY = 57
fld public final static int T_ARRAY_CAST = 131
fld public final static int T_AS = 25
fld public final static int T_AT = 135
fld public final static int T_BACKQUATE = 153
fld public final static int T_BOOLEAN_AND = 103
fld public final static int T_BOOLEAN_OR = 102
fld public final static int T_BOOL_CAST = 133
fld public final static int T_BREAK = 30
fld public final static int T_CALLABLE = 58
fld public final static int T_CASE = 28
fld public final static int T_CATCH = 40
fld public final static int T_CLASS = 50
fld public final static int T_CLASS_C = 59
fld public final static int T_CLONE = 24
fld public final static int T_CLOSE_PARENTHESE = 149
fld public final static int T_CLOSE_RECT = 137
fld public final static int T_COALESCE = 161
fld public final static int T_COALESCE_EQUAL = 162
fld public final static int T_COMMA = 83
fld public final static int T_CONCAT_EQUAL = 93
fld public final static int T_CONST = 35
fld public final static int T_CONSTANT_ENCAPSED_STRING = 12
fld public final static int T_CONTINUE = 31
fld public final static int T_CURLY_CLOSE = 70
fld public final static int T_CURLY_OPEN = 69
fld public final static int T_CURLY_OPEN_WITH_DOLAR = 68
fld public final static int T_DEC = 127
fld public final static int T_DECLARE = 21
fld public final static int T_DEFAULT = 29
fld public final static int T_DEFINE = 77
fld public final static int T_DIR = 74
fld public final static int T_DIV = 121
fld public final static int T_DIV_EQUAL = 92
fld public final static int T_DNUMBER = 5
fld public final static int T_DO = 14
fld public final static int T_DOLLAR = 151
fld public final static int T_DOLLAR_OPEN_CURLY_BRACES = 67
fld public final static int T_DOUBLE_ARROW = 55
fld public final static int T_DOUBLE_CAST = 129
fld public final static int T_ECHO = 13
fld public final static int T_ELLIPSIS = 160
fld public final static int T_ELSE = 141
fld public final static int T_ELSEIF = 140
fld public final static int T_EMPTY = 48
fld public final static int T_ENCAPSED_AND_WHITESPACE = 11
fld public final static int T_ENDDECLARE = 22
fld public final static int T_ENDFOR = 18
fld public final static int T_ENDFOREACH = 20
fld public final static int T_ENDIF = 139
fld public final static int T_ENDSWITCH = 27
fld public final static int T_ENDWHILE = 16
fld public final static int T_END_HEREDOC = 66
fld public final static int T_END_NOWDOC = 155
fld public final static int T_EQUAL = 88
fld public final static int T_EVAL = 80
fld public final static int T_EXIT = 2
fld public final static int T_EXTENDS = 52
fld public final static int T_FILE = 64
fld public final static int T_FINAL = 144
fld public final static int T_FINALLY = 42
fld public final static int T_FN = 33
fld public final static int T_FOR = 17
fld public final static int T_FOREACH = 19
fld public final static int T_FUNCTION = 34
fld public final static int T_FUNC_C = 62
fld public final static int T_GLOBAL = 44
fld public final static int T_GOTO = 32
fld public final static int T_HALT_COMPILER = 49
fld public final static int T_IF = 3
fld public final static int T_IMPLEMENTS = 53
fld public final static int T_INC = 126
fld public final static int T_INCLUDE = 78
fld public final static int T_INCLUDE_ONCE = 79
fld public final static int T_INLINE_HTML = 10
fld public final static int T_INSTANCEOF = 23
fld public final static int T_INSTEADOF = 157
fld public final static int T_INTERFACE = 51
fld public final static int T_INT_CAST = 128
fld public final static int T_ISSET = 47
fld public final static int T_IS_EQUAL = 107
fld public final static int T_IS_GREATER_OR_EQUAL = 112
fld public final static int T_IS_IDENTICAL = 109
fld public final static int T_IS_NOT_EQUAL = 108
fld public final static int T_IS_NOT_IDENTICAL = 110
fld public final static int T_IS_SMALLER_OR_EQUAL = 111
fld public final static int T_KOVA = 105
fld public final static int T_LGREATER = 115
fld public final static int T_LINE = 63
fld public final static int T_LIST = 56
fld public final static int T_LNUMBER = 4
fld public final static int T_LOGICAL_AND = 86
fld public final static int T_LOGICAL_OR = 84
fld public final static int T_LOGICAL_XOR = 85
fld public final static int T_METHOD_C = 61
fld public final static int T_MINUS = 119
fld public final static int T_MINUS_EQUAL = 90
fld public final static int T_MOD_EQUAL = 94
fld public final static int T_MUL_EQUAL = 91
fld public final static int T_NAMESPACE = 72
fld public final static int T_NEKUDA = 125
fld public final static int T_NEKUDOTAIM = 150
fld public final static int T_NEW = 138
fld public final static int T_NOT = 123
fld public final static int T_NS_C = 73
fld public final static int T_NS_SEPARATOR = 75
fld public final static int T_NUM_STRING = 9
fld public final static int T_OBJECT_CAST = 132
fld public final static int T_OBJECT_OPERATOR = 54
fld public final static int T_OPEN_PARENTHESE = 148
fld public final static int T_OPEN_RECT = 136
fld public final static int T_OR = 104
fld public final static int T_OR_EQUAL = 96
fld public final static int T_PAAMAYIM_NEKUDOTAYIM = 71
fld public final static int T_PLUS = 118
fld public final static int T_PLUS_EQUAL = 89
fld public final static int T_POW = 158
fld public final static int T_POW_EQUAL = 159
fld public final static int T_PRECENT = 122
fld public final static int T_PRINT = 87
fld public final static int T_PRIVATE = 145
fld public final static int T_PROTECTED = 146
fld public final static int T_PUBLIC = 147
fld public final static int T_QUATE = 152
fld public final static int T_QUESTION_MARK = 100
fld public final static int T_REFERENCE = 106
fld public final static int T_REQUIRE = 81
fld public final static int T_REQUIRE_ONCE = 82
fld public final static int T_RETURN = 36
fld public final static int T_RGREATER = 114
fld public final static int T_SEMICOLON = 101
fld public final static int T_SL = 116
fld public final static int T_SL_EQUAL = 98
fld public final static int T_SPACESHIP = 113
fld public final static int T_SR = 117
fld public final static int T_SR_EQUAL = 99
fld public final static int T_START_HEREDOC = 65
fld public final static int T_START_NOWDOC = 154
fld public final static int T_STATIC = 142
fld public final static int T_STRING = 6
fld public final static int T_STRING_CAST = 130
fld public final static int T_STRING_VARNAME = 7
fld public final static int T_SWITCH = 26
fld public final static int T_THROW = 41
fld public final static int T_TILDA = 124
fld public final static int T_TIMES = 120
fld public final static int T_TRAIT = 156
fld public final static int T_TRAIT_C = 60
fld public final static int T_TRY = 39
fld public final static int T_UNSET = 46
fld public final static int T_UNSET_CAST = 134
fld public final static int T_USE = 43
fld public final static int T_VAR = 45
fld public final static int T_VARIABLE = 8
fld public final static int T_VAR_COMMENT = 76
fld public final static int T_WHILE = 15
fld public final static int T_XOR_EQUAL = 97
fld public final static int T_YIELD = 37
fld public final static int T_YIELD_FROM = 38
fld public final static int error = 1
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable1
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable10
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable11
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable12
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable13
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable14
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable2
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable3
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable4
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable5
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable6
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable7
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable8
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.EncodedActionTable9
cons protected init()
fld protected final java.lang.StringBuilder sb
meth public java.lang.String getTableData()
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.GSFPHPError
cons public init(java.lang.String,org.openide.filesystems.FileObject,int,int,org.netbeans.modules.csl.api.Severity,java.lang.Object[])
intf org.netbeans.modules.csl.api.Error$Badging
meth public boolean isLineError()
meth public boolean showExplorerBadge()
meth public int getEndPosition()
meth public int getStartPosition()
meth public java.lang.Object[] getParameters()
meth public java.lang.String getDescription()
meth public java.lang.String getDisplayName()
meth public java.lang.String getKey()
meth public org.netbeans.modules.csl.api.Severity getSeverity()
meth public org.openide.filesystems.FileObject getFile()
supr java.lang.Object
hfds SILENT_ERROR_BADGE,displayName,endPosition,file,parameters,severity,startPosition
CLSS public org.netbeans.modules.php.editor.parser.GSFPHPParser
cons public init()
fld public final static boolean PARSE_BIG_FILES
fld public final static int BIG_FILE_SIZE
innr public abstract interface static SanitizedPart
innr public final static !enum Sanitize
innr public static Context
innr public static SanitizedPartImpl
intf java.beans.PropertyChangeListener
meth protected boolean sanitizeCurly(org.netbeans.modules.php.editor.parser.GSFPHPParser$Context)
meth protected boolean sanitizeRequireAndInclude(org.netbeans.modules.php.editor.parser.GSFPHPParser$Context,int,int)
meth protected org.netbeans.modules.php.editor.parser.PHPParseResult parseBuffer(org.netbeans.modules.php.editor.parser.GSFPHPParser$Context,org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize,org.netbeans.modules.php.editor.parser.PHP5ErrorHandler) throws java.lang.Exception
meth public org.netbeans.modules.parsing.spi.Parser$Result getResult(org.netbeans.modules.parsing.api.Task) throws org.netbeans.modules.parsing.spi.ParseException
meth public void addChangeListener(javax.swing.event.ChangeListener)
meth public void cancel(org.netbeans.modules.parsing.spi.Parser$CancelReason,org.netbeans.modules.parsing.spi.SourceModificationEvent)
meth public void parse(org.netbeans.modules.parsing.api.Snapshot,org.netbeans.modules.parsing.api.Task,org.netbeans.modules.parsing.spi.SourceModificationEvent) throws org.netbeans.modules.parsing.spi.ParseException
meth public void propertyChange(java.beans.PropertyChangeEvent)
meth public void removeChangeListener(javax.swing.event.ChangeListener)
supr org.netbeans.modules.parsing.spi.Parser
hfds LOGGER,REGISTERED_PHP_EXTENSIONS,aspTags,changeSupport,projectPropertiesListenerAdded,result,shortTags,unitTestCaretPosition
hcls SnapshotSourceHolder,SourceHolder,StringSourceHolder
CLSS public static org.netbeans.modules.php.editor.parser.GSFPHPParser$Context
outer org.netbeans.modules.php.editor.parser.GSFPHPParser
cons public init(org.netbeans.modules.parsing.api.Snapshot,int)
meth public int getCaretOffset()
meth public java.lang.String getBaseSource()
meth public java.lang.String getSanitizedSource()
meth public java.lang.String toString()
meth public org.netbeans.modules.parsing.api.Snapshot getSnapshot()
meth public org.netbeans.modules.php.editor.parser.GSFPHPParser$SanitizedPart getSanitizedPart()
meth public void setSanitizedPart(org.netbeans.modules.php.editor.parser.GSFPHPParser$SanitizedPart)
supr java.lang.Object
hfds caretOffset,sanitizedPart,snapshot,sourceHolder
CLSS public final static !enum org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize
outer org.netbeans.modules.php.editor.parser.GSFPHPParser
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize BLOCK_START
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize EDITED_DOT
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize EDITED_LINE
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize ERROR_DOT
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize ERROR_LINE
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize MISSING_CURLY
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize NEVER
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize NONE
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize REQUIRE_FUNCTION_INCOMPLETE
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize SYNTAX_ERROR_BLOCK
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize SYNTAX_ERROR_CURRENT
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize SYNTAX_ERROR_PREVIOUS
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize SYNTAX_ERROR_PREVIOUS_LINE
meth public static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.GSFPHPParser$Sanitize>
CLSS public abstract interface static org.netbeans.modules.php.editor.parser.GSFPHPParser$SanitizedPart
outer org.netbeans.modules.php.editor.parser.GSFPHPParser
fld public final static org.netbeans.modules.php.editor.parser.GSFPHPParser$SanitizedPart NONE
meth public abstract java.lang.String getText()
meth public abstract org.netbeans.modules.csl.api.OffsetRange getOffsetRange()
CLSS public static org.netbeans.modules.php.editor.parser.GSFPHPParser$SanitizedPartImpl
outer org.netbeans.modules.php.editor.parser.GSFPHPParser
cons public init(org.netbeans.modules.csl.api.OffsetRange,java.lang.String)
intf org.netbeans.modules.php.editor.parser.GSFPHPParser$SanitizedPart
meth public java.lang.String getText()
meth public org.netbeans.modules.csl.api.OffsetRange getOffsetRange()
supr java.lang.Object
hfds offsetRange,text
CLSS public abstract interface org.netbeans.modules.php.editor.parser.PHP5ErrorHandler
innr public static FatalError
innr public static SyntaxError
intf org.netbeans.modules.php.editor.parser.ParserErrorHandler
meth public abstract java.util.List<org.netbeans.modules.csl.api.Error> displayFatalError()
meth public abstract java.util.List<org.netbeans.modules.csl.api.Error> displaySyntaxErrors(org.netbeans.modules.php.editor.parser.astnodes.Program)
meth public abstract java.util.List<org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError> getSyntaxErrors()
meth public abstract void disableHandling()
CLSS public static org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$FatalError
outer org.netbeans.modules.php.editor.parser.PHP5ErrorHandler
meth public boolean isLineError()
supr org.netbeans.modules.php.editor.parser.GSFPHPError
CLSS public static org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError
outer org.netbeans.modules.php.editor.parser.PHP5ErrorHandler
cons public init(short[],java_cup.runtime.Symbol,java_cup.runtime.Symbol,org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError$Type)
innr public abstract static !enum Type
meth public boolean generateExtraInfo()
meth public java.lang.String getMessageHeader()
meth public java_cup.runtime.Symbol getCurrentToken()
meth public java_cup.runtime.Symbol getPreviousToken()
meth public org.netbeans.modules.csl.api.Severity getSeverity()
meth public short[] getExpectedTokens()
supr java.lang.Object
hfds currentToken,expectedTokens,previousToken,type
CLSS public abstract static !enum org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError$Type
outer org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError
fld public final static org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError$Type FIRST_VALID_ERROR
fld public final static org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError$Type POSSIBLE_ERROR
meth public abstract java.lang.String getMessageHeader()
meth public abstract org.netbeans.modules.csl.api.Severity getSeverity()
meth public static org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError$Type>
CLSS public org.netbeans.modules.php.editor.parser.PHP5ErrorHandlerImpl
cons public init(org.netbeans.modules.php.editor.parser.GSFPHPParser$Context)
intf org.netbeans.modules.php.editor.parser.PHP5ErrorHandler
meth public java.util.List<org.netbeans.modules.csl.api.Error> displayFatalError()
meth public java.util.List<org.netbeans.modules.csl.api.Error> displaySyntaxErrors(org.netbeans.modules.php.editor.parser.astnodes.Program)
meth public java.util.List<org.netbeans.modules.php.editor.parser.PHP5ErrorHandler$SyntaxError> getSyntaxErrors()
meth public void disableHandling()
meth public void handleError(org.netbeans.modules.php.editor.parser.ParserErrorHandler$Type,short[],java_cup.runtime.Symbol,java_cup.runtime.Symbol)
supr java.lang.Object
hfds context,handleErrors,syntaxErrors
hcls SyntaxErrorLogger,TokenWrapper
CLSS public org.netbeans.modules.php.editor.parser.PHPDocCommentParser
cons public init()
meth public org.netbeans.modules.php.editor.parser.astnodes.PHPDocBlock parse(int,int,java.lang.String)
supr java.lang.Object
hfds LINE_PARSERS,LINE_PARSERS_LOCK,PHP_DOC_VAR_TYPE_TAGS,pattern
hcls LineParsersListener,ParametersExtractor,ParametersExtractorImpl
CLSS public org.netbeans.modules.php.editor.parser.PHPParseResult
cons public init(org.netbeans.modules.parsing.api.Snapshot,org.netbeans.modules.php.editor.parser.astnodes.Program)
meth protected void invalidate()
meth public java.util.List<? extends org.netbeans.modules.csl.api.Error> getDiagnostics()
meth public org.netbeans.modules.csl.api.OffsetRange getErrorRange()
meth public org.netbeans.modules.php.editor.model.Model getModel()
meth public org.netbeans.modules.php.editor.model.Model getModel(boolean)
meth public org.netbeans.modules.php.editor.model.Model getModel(org.netbeans.modules.php.editor.model.Model$Type)
meth public org.netbeans.modules.php.editor.parser.astnodes.Program getProgram()
meth public void setErrors(java.util.List<org.netbeans.modules.csl.api.Error>)
supr org.netbeans.modules.csl.spi.ParserResult
hfds errors,model,root
CLSS public org.netbeans.modules.php.editor.parser.PHPVarCommentParser
cons public init()
supr java.lang.Object
hfds PHPDOCTAG
CLSS public abstract interface org.netbeans.modules.php.editor.parser.ParserErrorHandler
innr public final static !enum Type
meth public abstract void handleError(org.netbeans.modules.php.editor.parser.ParserErrorHandler$Type,short[],java_cup.runtime.Symbol,java_cup.runtime.Symbol)
CLSS public final static !enum org.netbeans.modules.php.editor.parser.ParserErrorHandler$Type
outer org.netbeans.modules.php.editor.parser.ParserErrorHandler
fld public final static org.netbeans.modules.php.editor.parser.ParserErrorHandler$Type FATAL_PARSER_ERROR
fld public final static org.netbeans.modules.php.editor.parser.ParserErrorHandler$Type SYNTAX_ERROR
meth public static org.netbeans.modules.php.editor.parser.ParserErrorHandler$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.ParserErrorHandler$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.ParserErrorHandler$Type>
CLSS public abstract interface org.netbeans.modules.php.editor.parser.PhpAnnotationType
meth public abstract java.lang.String getDescription()
meth public abstract java.lang.String getName()
meth public abstract java.util.Map<org.netbeans.modules.csl.api.OffsetRange,java.lang.String> getTypes()
CLSS public org.netbeans.modules.php.editor.parser.UnknownAnnotationLine
cons public init(java.lang.String)
cons public init(java.lang.String,java.lang.String)
intf org.netbeans.modules.php.spi.annotation.AnnotationParsedLine
meth public boolean startsWithAnnotation()
meth public java.lang.String getDescription()
meth public java.lang.String getName()
meth public java.util.Map<org.netbeans.modules.csl.api.OffsetRange,java.lang.String> getTypes()
supr java.lang.Object
hfds description,name
CLSS public org.netbeans.modules.php.editor.parser.UnusedUsesCollector
cons public init(org.netbeans.modules.php.editor.parser.PHPParseResult)
innr public final static UnusedOffsetRanges
meth public java.util.Collection<org.netbeans.modules.php.editor.parser.UnusedUsesCollector$UnusedOffsetRanges> collect()
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.NamespaceName)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeNode)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Program)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UseStatement)
supr org.netbeans.modules.php.editor.parser.astnodes.visitors.DefaultVisitor
hfds NAMESPACE_SEPARATOR,parserResult,unusedUsesOffsetRanges
CLSS public final static org.netbeans.modules.php.editor.parser.UnusedUsesCollector$UnusedOffsetRanges
outer org.netbeans.modules.php.editor.parser.UnusedUsesCollector
meth public org.netbeans.modules.csl.api.OffsetRange getRangeToReplace()
meth public org.netbeans.modules.csl.api.OffsetRange getRangeToVisualise()
supr java.lang.Object
hfds rangeToReplace,rangeToVisualise
CLSS public final org.netbeans.modules.php.editor.parser.Utils
meth public static int getRowEnd(java.lang.String,int)
meth public static int getRowStart(java.lang.String,int)
meth public static java.lang.String getASTScannerTokenName(int)
meth public static java.lang.String getRepeatingChars(char,int)
meth public static java.lang.String getSpaces(int)
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ASTError
cons public init(int,int)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ASTErrorExpression
cons public init(int,int)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
CLSS public abstract org.netbeans.modules.php.editor.parser.astnodes.ASTNode
cons public init(int,int)
meth public abstract void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
meth public final int getEndOffset()
meth public final int getStartOffset()
meth public final void setSourceRange(int,int)
supr java.lang.Object
hfds endOffset,startOffset
CLSS public org.netbeans.modules.php.editor.parser.astnodes.AnonymousObjectVariable
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.ClassInstanceCreation)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.CloneExpression)
meth public java.lang.String toString()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Variable
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ArrayAccess
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension getDimension()
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase getName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Variable
hfds dimension
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.ArrayElement>,org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation$Type)
innr public abstract static !enum Type
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.ArrayElement> getElements()
meth public org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation$Type getType()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds elements,type
CLSS public abstract static !enum org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation$Type
outer org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation$Type NEW
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation$Type OLD
meth public static org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation$Type>
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension$Type)
innr public final static !enum Type
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension$Type getType()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getIndex()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds index,type
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension$Type
outer org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension$Type VARIABLE_ARRAY
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension$Type VARIABLE_HASHTABLE
meth public static org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension$Type>
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ArrayElement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getKey()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getValue()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
hfds key,value
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ArrowFunctionDeclaration
cons public init(int,int,java.util.List,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression,boolean,boolean)
meth public boolean isReference()
meth public boolean isStatic()
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.FormalParameter> getFormalParameters()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getReturnType()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expression,formalParameters,isReference,isStatic,returnType
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Assignment
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type,org.netbeans.modules.php.editor.parser.astnodes.Expression)
innr public final static !enum Type
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type getOperator()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getRightHandSide()
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase getLeftHandSide()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds leftHandSide,operator,rightHandSide
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type
outer org.netbeans.modules.php.editor.parser.astnodes.Assignment
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type AND_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type COALESCE_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type CONCAT_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type DIV_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type MINUS_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type MOD_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type MUL_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type OR_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type PLUS_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type POW_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type SL_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type SR_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type XOR_EQUAL
meth public java.lang.String toString()
meth public static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.Assignment$Type>
hfds operator
CLSS public org.netbeans.modules.php.editor.parser.astnodes.BackTickExpression
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression[])
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getExpressions()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expressions
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Block
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Statement>)
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Statement>,boolean)
meth public boolean isCurly()
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Statement> getStatements()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds isCurly,statements
CLSS public abstract org.netbeans.modules.php.editor.parser.astnodes.BodyDeclaration
cons public init(int,int,int)
cons public init(int,int,int,boolean)
innr public static Modifier
meth public int getModifier()
meth public java.lang.String getModifierString()
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds modifier
CLSS public static org.netbeans.modules.php.editor.parser.astnodes.BodyDeclaration$Modifier
outer org.netbeans.modules.php.editor.parser.astnodes.BodyDeclaration
cons public init()
fld public final static int ABSTRACT = 1024
fld public final static int FINAL = 16
fld public final static int IMPLICIT_PUBLIC = 32
fld public final static int PRIVATE = 2
fld public final static int PROTECTED = 4
fld public final static int PUBLIC = 1
fld public final static int STATIC = 8
meth public static boolean isAbstract(int)
meth public static boolean isFinal(int)
meth public static boolean isImplicitPublic(int)
meth public static boolean isPrivate(int)
meth public static boolean isProtected(int)
meth public static boolean isPublic(int)
meth public static boolean isStatic(int)
meth public static java.lang.String toString(int)
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.astnodes.BreakStatement
cons public init(int,int)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.CastExpression
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type)
innr public final static !enum Type
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type getCastingType()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds castingType,expression
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type
outer org.netbeans.modules.php.editor.parser.astnodes.CastExpression
fld public final static org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type ARRAY
fld public final static org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type BOOL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type INT
fld public final static org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type OBJECT
fld public final static org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type REAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type STRING
fld public final static org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type UNSET
meth public static org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.CastExpression$Type>
CLSS public org.netbeans.modules.php.editor.parser.astnodes.CatchClause
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,org.netbeans.modules.php.editor.parser.astnodes.Variable,org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getClassNames()
meth public org.netbeans.modules.php.editor.parser.astnodes.Block getBody()
meth public org.netbeans.modules.php.editor.parser.astnodes.Variable getVariable()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body,classNames,variable
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration$Modifier,org.netbeans.modules.php.editor.parser.astnodes.Identifier,org.netbeans.modules.php.editor.parser.astnodes.Expression,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,org.netbeans.modules.php.editor.parser.astnodes.Block)
innr public final static !enum Modifier
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration$Modifier getModifier()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getSuperClass()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.TypeDeclaration
hfds modifier,superClass
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration$Modifier
outer org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration$Modifier ABSTRACT
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration$Modifier FINAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration$Modifier NONE
meth public static org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration$Modifier valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration$Modifier[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration$Modifier>
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ClassInstanceCreation
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.ClassName,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>)
anno 3 org.netbeans.api.annotations.common.NonNull()
anno 4 org.netbeans.api.annotations.common.NullAllowed()
meth public boolean isAnonymous()
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> ctorParams()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getInterfaces()
meth public org.netbeans.modules.php.editor.parser.astnodes.Block getBody()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public org.netbeans.modules.php.editor.parser.astnodes.ClassName getClassName()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getSuperClass()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public static org.netbeans.modules.php.editor.parser.astnodes.ClassInstanceCreation anonymous(java.lang.String,int,int,int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,org.netbeans.modules.php.editor.parser.astnodes.Expression,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds body,classCounter,className,classStartOffset,ctorParams,fileName,interfaces,superClass
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ClassName
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
hfds name
CLSS public org.netbeans.modules.php.editor.parser.astnodes.CloneExpression
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Comment
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Comment$Type)
innr public final static !enum Type
meth public org.netbeans.modules.php.editor.parser.astnodes.Comment$Type getCommentType()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
hfds commentType
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.Comment$Type
outer org.netbeans.modules.php.editor.parser.astnodes.Comment
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Comment$Type TYPE_MULTILINE
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Comment$Type TYPE_PHPDOC
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Comment$Type TYPE_SINGLE_LINE
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Comment$Type TYPE_VARTYPE
meth public java.lang.String toString()
meth public static org.netbeans.modules.php.editor.parser.astnodes.Comment$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.Comment$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.Comment$Type>
hfds text
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression$OperatorType,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression)
innr public abstract static !enum OperatorType
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression$OperatorType getOperator()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getCondition()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getIfFalse()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getIfTrue()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds condition,ifFalse,ifTrue,operator
CLSS public abstract static !enum org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression$OperatorType
outer org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression$OperatorType COALESCE
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression$OperatorType ELVIS
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression$OperatorType QUESTION_MARK
meth public abstract boolean isOperatorToken(org.netbeans.api.lexer.Token<org.netbeans.modules.php.editor.lexer.PHPTokenId>)
meth public boolean isShortened()
meth public java.lang.String toString()
meth public static org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression$OperatorType valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression$OperatorType[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression$OperatorType>
hfds operatorSign,shortened
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ConstantDeclaration
cons public init(int,int,int,java.util.List,boolean)
meth public boolean isGlobal()
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getInitializers()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Identifier> getNames()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.BodyDeclaration
hfds initializers,isGlobal,names
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ContinueStatement
cons public init(int,int)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.DeclareStatement
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Identifier>,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,org.netbeans.modules.php.editor.parser.astnodes.Statement)
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getDirectiveValues()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Identifier> getDirectiveNames()
meth public org.netbeans.modules.php.editor.parser.astnodes.Statement getBody()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body,directiveNames,directiveValues
CLSS public org.netbeans.modules.php.editor.parser.astnodes.DereferencableVariable
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.VariableBase
hfds expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.DereferencedArrayAccess
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension getDimension()
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase getMember()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Dispatch
hfds dimension
CLSS public abstract org.netbeans.modules.php.editor.parser.astnodes.Dispatch
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.VariableBase)
meth public abstract org.netbeans.modules.php.editor.parser.astnodes.VariableBase getMember()
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase getDispatcher()
supr org.netbeans.modules.php.editor.parser.astnodes.VariableBase
hfds dispatcher
CLSS public org.netbeans.modules.php.editor.parser.astnodes.DoStatement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Statement)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getCondition()
meth public org.netbeans.modules.php.editor.parser.astnodes.Statement getBody()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body,condition
CLSS public org.netbeans.modules.php.editor.parser.astnodes.EchoStatement
cons public init(int,int,java.util.List<java.lang.Exception>)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getExpressions()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds expressions
CLSS public org.netbeans.modules.php.editor.parser.astnodes.EmptyStatement
cons public init(int,int)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
CLSS public abstract org.netbeans.modules.php.editor.parser.astnodes.Expression
cons public init(int,int)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ExpressionArrayAccess
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension getDimension()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.VariableBase
hfds dimension,expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ExpressionStatement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.FieldAccess
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.netbeans.modules.php.editor.parser.astnodes.Variable)
meth public org.netbeans.modules.php.editor.parser.astnodes.Variable getField()
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase getMember()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Dispatch
hfds field
CLSS public org.netbeans.modules.php.editor.parser.astnodes.FieldsDeclaration
cons public init(int,int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,java.util.List)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.SingleFieldDeclaration> getFields()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getFieldType()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression[] getInitialValues()
meth public org.netbeans.modules.php.editor.parser.astnodes.Variable[] getVariableNames()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.BodyDeclaration
hfds fieldType,fields
CLSS public org.netbeans.modules.php.editor.parser.astnodes.FinallyClause
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Block getBody()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ForEachStatement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Statement)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Statement)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getKey()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getValue()
meth public org.netbeans.modules.php.editor.parser.astnodes.Statement getStatement()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds expression,key,statement,value
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ForStatement
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,org.netbeans.modules.php.editor.parser.astnodes.Statement)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getConditions()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getInitializers()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getUpdaters()
meth public org.netbeans.modules.php.editor.parser.astnodes.Statement getBody()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body,conditions,initializers,updaters
CLSS public org.netbeans.modules.php.editor.parser.astnodes.FormalParameter
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Reference)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Reference,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public boolean isMandatory()
meth public boolean isNullableType()
meth public boolean isOptional()
meth public boolean isReference()
meth public boolean isVariadic()
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getDefaultValue()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getParameterName()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getParameterType()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
hfds defaultValue,parameterName,parameterType
CLSS public org.netbeans.modules.php.editor.parser.astnodes.FunctionDeclaration
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Identifier,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.FormalParameter>,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Block,boolean)
meth public boolean isReference()
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.FormalParameter> getFormalParameters()
meth public org.netbeans.modules.php.editor.parser.astnodes.Block getBody()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getReturnType()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public org.netbeans.modules.php.editor.parser.astnodes.Identifier getFunctionName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body,formalParameters,isReference,name,returnType
CLSS public org.netbeans.modules.php.editor.parser.astnodes.FunctionInvocation
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.FunctionName,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getParameters()
meth public org.netbeans.modules.php.editor.parser.astnodes.FunctionName getFunctionName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.VariableBase
hfds functionName,parameters
CLSS public org.netbeans.modules.php.editor.parser.astnodes.FunctionName
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
hfds name
CLSS public org.netbeans.modules.php.editor.parser.astnodes.GlobalStatement
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Variable>)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Variable> getVariables()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds variables
CLSS public org.netbeans.modules.php.editor.parser.astnodes.GotoLabel
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Identifier)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Identifier getName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds name
CLSS public org.netbeans.modules.php.editor.parser.astnodes.GotoStatement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Identifier)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Identifier getLabel()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds label
CLSS public org.netbeans.modules.php.editor.parser.astnodes.GroupUseStatementPart
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.NamespaceName,java.util.List)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.SingleUseStatementPart> getItems()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public org.netbeans.modules.php.editor.parser.astnodes.NamespaceName getBaseNamespaceName()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.UseStatementPart
hfds baseNamespaceName,items
CLSS public org.netbeans.modules.php.editor.parser.astnodes.HaltCompiler
cons public init(int,int)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Identifier
cons public init(int,int,java.lang.String)
cons public init(int,int,java.lang.String,boolean)
meth public boolean isKeyword()
meth public java.lang.String getName()
meth public java.lang.String toString()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds isKeyword,name
CLSS public org.netbeans.modules.php.editor.parser.astnodes.IfStatement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Statement,org.netbeans.modules.php.editor.parser.astnodes.Statement)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getCondition()
meth public org.netbeans.modules.php.editor.parser.astnodes.Statement getFalseStatement()
meth public org.netbeans.modules.php.editor.parser.astnodes.Statement getTrueStatement()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds condition,falseStatement,trueStatement
CLSS public org.netbeans.modules.php.editor.parser.astnodes.IgnoreError
cons public init(int,int)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.InLineHtml
cons public init(int,int)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Include
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Include$Type)
innr public final static !enum Type
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public org.netbeans.modules.php.editor.parser.astnodes.Include$Type getIncludeType()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expression,includeType
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.Include$Type
outer org.netbeans.modules.php.editor.parser.astnodes.Include
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Include$Type INCLUDE
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Include$Type INCLUDE_ONCE
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Include$Type REQUIRE
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Include$Type REQUIRE_ONCE
meth public static org.netbeans.modules.php.editor.parser.astnodes.Include$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.Include$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.Include$Type>
CLSS public org.netbeans.modules.php.editor.parser.astnodes.InfixExpression
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType,org.netbeans.modules.php.editor.parser.astnodes.Expression)
innr public final static !enum OperatorType
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getLeft()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getRight()
meth public org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType getOperator()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds left,operator,right
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType
outer org.netbeans.modules.php.editor.parser.astnodes.InfixExpression
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType AND
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType BOOL_AND
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType BOOL_OR
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType CONCAT
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType DIV
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType IS_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType IS_GREATER_OR_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType IS_IDENTICAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType IS_NOT_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType IS_NOT_IDENTICAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType IS_SMALLER_OR_EQUAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType LGREATER
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType MINUS
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType MOD
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType MUL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType OR
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType PLUS
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType POW
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType RGREATER
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType SL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType SPACESHIP
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType SR
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType STRING_AND
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType STRING_OR
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType STRING_XOR
fld public final static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType XOR
meth public java.lang.String toString()
meth public static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.InfixExpression$OperatorType>
hfds operatorSign
CLSS public org.netbeans.modules.php.editor.parser.astnodes.InstanceOfExpression
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.ClassName)
meth public final org.netbeans.modules.php.editor.parser.astnodes.ClassName getClassName()
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds className,expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.InterfaceDeclaration
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Identifier,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>,org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.TypeDeclaration
CLSS public org.netbeans.modules.php.editor.parser.astnodes.LambdaFunctionDeclaration
cons public init(int,int,java.util.List,org.netbeans.modules.php.editor.parser.astnodes.Expression,java.util.List,org.netbeans.modules.php.editor.parser.astnodes.Block,boolean,boolean)
meth public boolean isReference()
meth public boolean isStatic()
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getLexicalVariables()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.FormalParameter> getFormalParameters()
meth public org.netbeans.modules.php.editor.parser.astnodes.Block getBody()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getReturnType()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds body,formalParameters,isReference,isStatic,lexicalVariables,returnType
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ListVariable
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.ArrayElement>,org.netbeans.modules.php.editor.parser.astnodes.ListVariable$SyntaxType)
innr public abstract static !enum SyntaxType
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.ArrayElement> getElements()
meth public org.netbeans.modules.php.editor.parser.astnodes.ListVariable$SyntaxType getSyntaxType()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.VariableBase
hfds elements,syntaxType
CLSS public abstract static !enum org.netbeans.modules.php.editor.parser.astnodes.ListVariable$SyntaxType
outer org.netbeans.modules.php.editor.parser.astnodes.ListVariable
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ListVariable$SyntaxType NEW
fld public final static org.netbeans.modules.php.editor.parser.astnodes.ListVariable$SyntaxType OLD
meth public static org.netbeans.modules.php.editor.parser.astnodes.ListVariable$SyntaxType valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.ListVariable$SyntaxType[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.ListVariable$SyntaxType>
CLSS public org.netbeans.modules.php.editor.parser.astnodes.MethodDeclaration
cons public init(int,int,int,org.netbeans.modules.php.editor.parser.astnodes.FunctionDeclaration)
cons public init(int,int,int,org.netbeans.modules.php.editor.parser.astnodes.FunctionDeclaration,boolean)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.FunctionDeclaration getFunction()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.BodyDeclaration
hfds function
CLSS public org.netbeans.modules.php.editor.parser.astnodes.MethodInvocation
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.netbeans.modules.php.editor.parser.astnodes.FunctionInvocation)
meth public org.netbeans.modules.php.editor.parser.astnodes.FunctionInvocation getMember()
meth public org.netbeans.modules.php.editor.parser.astnodes.FunctionInvocation getMethod()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Dispatch
hfds method
CLSS public org.netbeans.modules.php.editor.parser.astnodes.NamespaceDeclaration
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.NamespaceName,org.netbeans.modules.php.editor.parser.astnodes.Block,boolean)
meth public boolean isBracketed()
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Block getBody()
meth public org.netbeans.modules.php.editor.parser.astnodes.NamespaceName getName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
meth public void addStatement(org.netbeans.modules.php.editor.parser.astnodes.Statement)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body,bracketed,name
CLSS public org.netbeans.modules.php.editor.parser.astnodes.NamespaceName
cons public init(int,int,java.util.List,boolean,boolean)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Identifier[],boolean,boolean)
fld protected java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Identifier> segments
meth public boolean isCurrent()
meth public boolean isGlobal()
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Identifier> getSegments()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds current,global
CLSS public org.netbeans.modules.php.editor.parser.astnodes.NullableType
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getType()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds type
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PHPDocBlock
cons public init(int,int,java.lang.String)
cons public init(int,int,java.lang.String,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag>)
meth public java.lang.String getDescription()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag> getTags()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Comment
hfds description,tags
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PHPDocMethodTag
cons public init(int,int,org.netbeans.modules.php.spi.annotation.AnnotationParsedLine,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeNode>,org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.PHPDocVarTypeTag>,java.lang.String)
cons public init(int,int,org.netbeans.modules.php.spi.annotation.AnnotationParsedLine,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeNode>,org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.PHPDocVarTypeTag>,java.lang.String,boolean)
meth public boolean isStatic()
meth public java.lang.String getDocumentation()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.PHPDocVarTypeTag> getParameters()
meth public org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode getMethodName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeTag
hfds isStatic,name,params
hcls CommentExtractor,CommentExtractorImpl
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode
cons public init(int,int,java.lang.String)
meth public java.lang.String getValue()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
hfds value
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PHPDocStaticAccessType
cons public init(int,int,java.lang.String,org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode,org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode)
meth public org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode getClassName()
meth public org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode getConstant()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeNode
hfds className,constant
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag
cons public init(int,int,org.netbeans.modules.php.spi.annotation.AnnotationParsedLine,java.lang.String)
innr public final static !enum Type
meth public java.lang.String getDocumentation()
meth public java.lang.String getValue()
meth public org.netbeans.modules.php.spi.annotation.AnnotationParsedLine getKind()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
hfds type,value
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type
outer org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type DEPRECATED
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type GLOBAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type METHOD
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type MIXIN
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type PARAM
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type PROPERTY
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type PROPERTY_READ
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type PROPERTY_WRITE
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type RETURN
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type VAR
intf org.netbeans.modules.php.spi.annotation.AnnotationParsedLine
meth public boolean startsWithAnnotation()
meth public java.lang.String getDescription()
meth public java.lang.String getName()
meth public java.util.Map<org.netbeans.modules.csl.api.OffsetRange,java.lang.String> getTypes()
meth public static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag$Type>
hfds name
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeNode
cons public init(int,int,java.lang.String,boolean)
meth public boolean isArray()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode
hfds array
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeTag
cons public init(int,int,org.netbeans.modules.php.spi.annotation.AnnotationParsedLine,java.lang.String,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeNode>)
fld protected java.lang.String documentation
meth public java.lang.String getDocumentation()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeNode> getTypes()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag
hfds types
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PHPDocVarTypeTag
cons public init(int,int,org.netbeans.modules.php.spi.annotation.AnnotationParsedLine,java.lang.String,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeNode>,org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode)
meth public java.lang.String getDocumentation()
meth public org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode getVariable()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeTag
hfds variable
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PHPVarComment
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.PHPDocVarTypeTag)
meth public org.netbeans.modules.php.editor.parser.astnodes.PHPDocVarTypeTag getVariable()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Comment
hfds variable
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ParenthesisExpression
cons public init(int,int)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression$Operator)
innr public final static !enum Operator
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression$Operator getOperator()
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase getVariable()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds operator,variable
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression$Operator
outer org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression$Operator DEC
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression$Operator INC
meth public java.lang.String toString()
meth public static org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression$Operator valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression$Operator[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression$Operator>
hfds operatorSign
CLSS public org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.VariableBase,org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression$Operator)
innr public final static !enum Operator
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression$Operator getOperator()
meth public org.netbeans.modules.php.editor.parser.astnodes.VariableBase getVariable()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds operator,variable
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression$Operator
outer org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression$Operator DEC
fld public final static org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression$Operator INC
meth public java.lang.String toString()
meth public static org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression$Operator valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression$Operator[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression$Operator>
hfds operatorSign
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Program
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Statement>,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Comment>)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Comment> getComments()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Statement> getStatements()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
hfds comments,statements
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Quote
cons public init(int,int,java.util.List<java.lang.Exception>,org.netbeans.modules.php.editor.parser.astnodes.Quote$Type)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression[],org.netbeans.modules.php.editor.parser.astnodes.Quote$Type)
innr public final static !enum Type
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getExpressions()
meth public org.netbeans.modules.php.editor.parser.astnodes.Quote$Type getQuoteType()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expressions,quoteType
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.Quote$Type
outer org.netbeans.modules.php.editor.parser.astnodes.Quote
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Quote$Type HEREDOC
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Quote$Type QUOTE
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Quote$Type SINGLE
meth public static org.netbeans.modules.php.editor.parser.astnodes.Quote$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.Quote$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.Quote$Type>
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Reference
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.ClassInstanceCreation)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.VariableBase)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Variadic)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ReflectionVariable
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Variable
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ReturnStatement
cons public init(int,int)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Scalar
cons public init(int,int,java.lang.String,org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type)
innr public final static !enum Type
meth public java.lang.String getStringValue()
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type getScalarType()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds scalarType,stringValue
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type
outer org.netbeans.modules.php.editor.parser.astnodes.Scalar
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type INT
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type REAL
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type STRING
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type SYSTEM
fld public final static org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type UNKNOWN
meth public static org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.Scalar$Type>
CLSS public org.netbeans.modules.php.editor.parser.astnodes.SimpleASTNode
cons public init(int,int,java.lang.String)
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.SimpleASTNode>,java.lang.String)
meth public int getEndOffset()
meth public int getStartOffset()
meth public java.lang.String getKind()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.SimpleASTNode> getChildren()
supr java.lang.Object
hfds children,endOffset,kind,startOffset
CLSS public org.netbeans.modules.php.editor.parser.astnodes.SingleFieldDeclaration
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Variable,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getFieldType()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getValue()
meth public org.netbeans.modules.php.editor.parser.astnodes.Variable getName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
hfds fieldType,name,value
CLSS public org.netbeans.modules.php.editor.parser.astnodes.SingleUseStatementPart
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.NamespaceName,org.netbeans.modules.php.editor.parser.astnodes.Identifier)
anno 3 org.netbeans.api.annotations.common.NonNull()
anno 4 org.netbeans.api.annotations.common.NullAllowed()
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type,org.netbeans.modules.php.editor.parser.astnodes.NamespaceName,org.netbeans.modules.php.editor.parser.astnodes.Identifier)
anno 4 org.netbeans.api.annotations.common.NonNull()
anno 5 org.netbeans.api.annotations.common.NullAllowed()
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Identifier getAlias()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public org.netbeans.modules.php.editor.parser.astnodes.NamespaceName getName()
anno 0 org.netbeans.api.annotations.common.NonNull()
meth public org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type getType()
anno 0 org.netbeans.api.annotations.common.CheckForNull()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.UseStatementPart
hfds alias,name,type
CLSS public abstract org.netbeans.modules.php.editor.parser.astnodes.Statement
cons public init(int,int)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
CLSS public org.netbeans.modules.php.editor.parser.astnodes.StaticConstantAccess
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Identifier)
meth public org.netbeans.modules.php.editor.parser.astnodes.ASTNode getMember()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getConstant()
meth public org.netbeans.modules.php.editor.parser.astnodes.Identifier getConstantName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.StaticDispatch
hfds constant
CLSS public abstract org.netbeans.modules.php.editor.parser.astnodes.StaticDispatch
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public abstract org.netbeans.modules.php.editor.parser.astnodes.ASTNode getMember()
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getDispatcher()
supr org.netbeans.modules.php.editor.parser.astnodes.VariableBase
hfds dispatcher
CLSS public org.netbeans.modules.php.editor.parser.astnodes.StaticFieldAccess
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Variable)
meth public org.netbeans.modules.php.editor.parser.astnodes.ASTNode getMember()
meth public org.netbeans.modules.php.editor.parser.astnodes.Variable getField()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.StaticDispatch
hfds field
CLSS public org.netbeans.modules.php.editor.parser.astnodes.StaticMethodInvocation
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.FunctionInvocation)
meth public org.netbeans.modules.php.editor.parser.astnodes.ASTNode getMember()
meth public org.netbeans.modules.php.editor.parser.astnodes.FunctionInvocation getMethod()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.StaticDispatch
hfds method
CLSS public org.netbeans.modules.php.editor.parser.astnodes.StaticStatement
cons public init(int,int,java.util.List<java.lang.Exception>)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getExpressions()
meth public org.netbeans.modules.php.editor.parser.astnodes.Variable[] getVariables()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds expressions
CLSS public org.netbeans.modules.php.editor.parser.astnodes.SwitchCase
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Statement>,boolean)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Statement[],boolean)
meth public boolean isDefault()
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Statement> getActions()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getValue()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds actions,isDefault,value
CLSS public org.netbeans.modules.php.editor.parser.astnodes.SwitchStatement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Block getBody()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body,expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.ThrowStatement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.TraitConflictResolutionDeclaration
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Identifier,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression>)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getSuppressedTraitNames()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getPreferredTraitName()
meth public org.netbeans.modules.php.editor.parser.astnodes.Identifier getMethodName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds methodName,preferredTraitName,suppressedTraitNames
CLSS public org.netbeans.modules.php.editor.parser.astnodes.TraitDeclaration
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Identifier,org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.TypeDeclaration
CLSS public org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Identifier,org.netbeans.modules.php.editor.parser.astnodes.Identifier,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration$Modifier)
innr public final static !enum Modifier
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getTraitName()
meth public org.netbeans.modules.php.editor.parser.astnodes.Identifier getNewMethodName()
meth public org.netbeans.modules.php.editor.parser.astnodes.Identifier getOldMethodName()
meth public org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration$Modifier getModifier()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds modifier,newMethodName,oldMethodName,traitName
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration$Modifier
outer org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration
fld public final static org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration$Modifier PRIVATE
fld public final static org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration$Modifier PROTECTED
fld public final static org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration$Modifier PUBLIC
meth public static org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration$Modifier valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration$Modifier[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration$Modifier>
CLSS public org.netbeans.modules.php.editor.parser.astnodes.TryStatement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Block,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.CatchClause>,org.netbeans.modules.php.editor.parser.astnodes.FinallyClause)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.CatchClause> getCatchClauses()
meth public org.netbeans.modules.php.editor.parser.astnodes.Block getBody()
meth public org.netbeans.modules.php.editor.parser.astnodes.FinallyClause getFinallyClause()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds catchClauses,finallyClause,tryStatement
CLSS public abstract org.netbeans.modules.php.editor.parser.astnodes.TypeDeclaration
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Identifier,org.netbeans.modules.php.editor.parser.astnodes.Expression[],org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.Expression> getInterfaes()
meth public org.netbeans.modules.php.editor.parser.astnodes.Block getBody()
meth public org.netbeans.modules.php.editor.parser.astnodes.Identifier getName()
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body,interfaces,name
CLSS public org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation$Operator)
innr public final static !enum Operator
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation$Operator getOperator()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expression,operator
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation$Operator
outer org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation
fld public final static org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation$Operator MINUS
fld public final static org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation$Operator NOT
fld public final static org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation$Operator PLUS
fld public final static org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation$Operator TILDA
meth public java.lang.String toString()
meth public static org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation$Operator valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation$Operator[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation$Operator>
hfds operatorSign
CLSS public org.netbeans.modules.php.editor.parser.astnodes.UnpackableArrayElement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ArrayElement
CLSS public org.netbeans.modules.php.editor.parser.astnodes.UseStatement
cons public init(int,int,java.util.List)
cons public init(int,int,java.util.List,org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.SingleUseStatementPart[])
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.SingleUseStatementPart[],org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type)
innr public final static !enum Type
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.UseStatementPart> getParts()
meth public org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type getType()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds parts,type
CLSS public final static !enum org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type
outer org.netbeans.modules.php.editor.parser.astnodes.UseStatement
fld public final static org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type CONST
fld public final static org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type FUNCTION
fld public final static org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type TYPE
meth public java.lang.String toString()
meth public static org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type valueOf(java.lang.String)
meth public static org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type[] values()
supr java.lang.Enum<org.netbeans.modules.php.editor.parser.astnodes.UseStatement$Type>
hfds type
CLSS public abstract org.netbeans.modules.php.editor.parser.astnodes.UseStatementPart
cons public init(int,int)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
CLSS public org.netbeans.modules.php.editor.parser.astnodes.UseTraitStatement
cons public init(int,int,java.util.List<org.netbeans.modules.php.editor.parser.astnodes.UseTraitStatementPart>,org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public java.lang.String toString()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.UseTraitStatementPart> getParts()
meth public org.netbeans.modules.php.editor.parser.astnodes.Block getBody()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body,parts
CLSS public org.netbeans.modules.php.editor.parser.astnodes.UseTraitStatementPart
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.NamespaceName)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.NamespaceName getName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.ASTNode
hfds name
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Variable
cons protected init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
cons protected init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,boolean)
cons public init(int,int,java.lang.String)
meth public boolean isDollared()
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getName()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.VariableBase
hfds isDollared,name
CLSS public org.netbeans.modules.php.editor.parser.astnodes.VariableBase
cons public init(int,int)
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
CLSS public org.netbeans.modules.php.editor.parser.astnodes.Variadic
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpression()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expression
CLSS public abstract interface org.netbeans.modules.php.editor.parser.astnodes.Visitor
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ASTError)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ASTErrorExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ASTNode)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.AnonymousObjectVariable)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayAccess)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayElement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrowFunctionDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Assignment)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.BackTickExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.BreakStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.CastExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.CatchClause)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ClassInstanceCreation)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ClassName)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.CloneExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Comment)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ConstantDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ContinueStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.DeclareStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.DereferencableVariable)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.DereferencedArrayAccess)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.DoStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.EchoStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.EmptyStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ExpressionArrayAccess)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ExpressionStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.FieldAccess)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.FieldsDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.FinallyClause)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ForEachStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ForStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.FormalParameter)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.FunctionDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.FunctionInvocation)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.FunctionName)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.GlobalStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.GotoLabel)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.GotoStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.GroupUseStatementPart)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.HaltCompiler)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Identifier)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.IfStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.IgnoreError)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.InLineHtml)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Include)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.InfixExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.InstanceOfExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.InterfaceDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.LambdaFunctionDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ListVariable)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.MethodDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.MethodInvocation)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.NamespaceDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.NamespaceName)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.NullableType)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocBlock)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocMethodTag)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocStaticAccessType)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeNode)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeTag)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocVarTypeTag)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPVarComment)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ParenthesisExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Program)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Quote)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Reference)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ReflectionVariable)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ReturnStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Scalar)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.SingleFieldDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.SingleUseStatementPart)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticConstantAccess)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticFieldAccess)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticMethodInvocation)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.SwitchCase)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.SwitchStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.ThrowStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.TraitConflictResolutionDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.TraitDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.TryStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.UnpackableArrayElement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.UseStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.UseTraitStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.UseTraitStatementPart)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Variable)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.Variadic)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.WhileStatement)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.YieldExpression)
meth public abstract void visit(org.netbeans.modules.php.editor.parser.astnodes.YieldFromExpression)
CLSS public org.netbeans.modules.php.editor.parser.astnodes.WhileStatement
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Statement)
meth public java.lang.String toString()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getCondition()
meth public org.netbeans.modules.php.editor.parser.astnodes.Statement getBody()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Statement
hfds body,condition
CLSS public org.netbeans.modules.php.editor.parser.astnodes.YieldExpression
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getKey()
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getValue()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds key,value
CLSS public org.netbeans.modules.php.editor.parser.astnodes.YieldFromExpression
cons public init(int,int,org.netbeans.modules.php.editor.parser.astnodes.Expression)
meth public org.netbeans.modules.php.editor.parser.astnodes.Expression getExpr()
meth public void accept(org.netbeans.modules.php.editor.parser.astnodes.Visitor)
supr org.netbeans.modules.php.editor.parser.astnodes.Expression
hfds expr
CLSS public org.netbeans.modules.php.editor.parser.astnodes.visitors.DefaultTreePathVisitor
cons public init()
meth protected void addToPath(org.netbeans.modules.php.editor.parser.astnodes.ASTNode)
meth protected void removeFromPath()
meth public java.util.List<org.netbeans.modules.php.editor.parser.astnodes.ASTNode> getPath()
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ASTError)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ASTErrorExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ASTNode)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.AnonymousObjectVariable)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayElement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrowFunctionDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Assignment)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.BackTickExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.BreakStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.CastExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.CatchClause)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ClassInstanceCreation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ClassName)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.CloneExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Comment)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ConstantDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ContinueStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.DeclareStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.DoStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.EchoStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.EmptyStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ExpressionStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FieldAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FieldsDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FinallyClause)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ForEachStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ForStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FormalParameter)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FunctionDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FunctionInvocation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FunctionName)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.GlobalStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.GroupUseStatementPart)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Identifier)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.IfStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.IgnoreError)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.InLineHtml)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Include)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.InfixExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.InstanceOfExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.InterfaceDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ListVariable)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.MethodDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.MethodInvocation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.NamespaceDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocBlock)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocMethodTag)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeTag)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocVarTypeTag)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ParenthesisExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Program)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Quote)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Reference)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ReflectionVariable)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ReturnStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Scalar)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.SingleFieldDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.SingleUseStatementPart)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticConstantAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticFieldAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticMethodInvocation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.SwitchCase)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.SwitchStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ThrowStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.TraitConflictResolutionDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.TraitDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.TryStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UnpackableArrayElement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UseStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UseTraitStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UseTraitStatementPart)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Variable)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.WhileStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.YieldExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.YieldFromExpression)
supr org.netbeans.modules.php.editor.parser.astnodes.visitors.DefaultVisitor
hfds path
CLSS public org.netbeans.modules.php.editor.parser.astnodes.visitors.DefaultVisitor
cons public init()
intf org.netbeans.modules.php.editor.parser.astnodes.Visitor
meth public void scan(java.lang.Iterable<? extends org.netbeans.modules.php.editor.parser.astnodes.ASTNode>)
meth public void scan(org.netbeans.modules.php.editor.parser.astnodes.ASTNode)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ASTError)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ASTErrorExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ASTNode)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.AnonymousObjectVariable)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayCreation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayDimension)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrayElement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ArrowFunctionDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Assignment)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.BackTickExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Block)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.BreakStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.CastExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.CatchClause)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ClassInstanceCreation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ClassName)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.CloneExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Comment)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ConditionalExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ConstantDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ContinueStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.DeclareStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.DereferencableVariable)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.DereferencedArrayAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.DoStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.EchoStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.EmptyStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ExpressionArrayAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ExpressionStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FieldAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FieldsDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FinallyClause)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ForEachStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ForStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FormalParameter)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FunctionDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FunctionInvocation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FunctionName)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.GlobalStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.GotoLabel)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.GotoStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.GroupUseStatementPart)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.HaltCompiler)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Identifier)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.IfStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.IgnoreError)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.InLineHtml)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Include)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.InfixExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.InstanceOfExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.InterfaceDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.LambdaFunctionDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ListVariable)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.MethodDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.MethodInvocation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.NamespaceDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.NamespaceName)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.NullableType)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocBlock)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocMethodTag)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocNode)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocStaticAccessType)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocTag)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeNode)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocTypeTag)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPDocVarTypeTag)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PHPVarComment)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ParenthesisExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PostfixExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.PrefixExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Program)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Quote)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Reference)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ReflectionVariable)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ReturnStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Scalar)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.SingleFieldDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.SingleUseStatementPart)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticConstantAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticFieldAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticMethodInvocation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.StaticStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.SwitchCase)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.SwitchStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ThrowStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.TraitConflictResolutionDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.TraitDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.TraitMethodAliasDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.TryStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UnaryOperation)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UnpackableArrayElement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UseStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UseTraitStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.UseTraitStatementPart)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Variable)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Variadic)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.WhileStatement)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.YieldExpression)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.YieldFromExpression)
supr java.lang.Object
CLSS public org.netbeans.modules.php.editor.parser.astnodes.visitors.PhpElementVisitor
cons protected init(org.netbeans.modules.php.editor.parser.PHPParseResult)
meth public final org.netbeans.modules.php.editor.api.ElementQuery$File toElementQuery()
meth public org.netbeans.modules.php.editor.api.FileElementQuery getElementQuery()
meth public static org.netbeans.modules.php.editor.api.ElementQuery$File createElementQuery(org.netbeans.modules.php.editor.parser.PHPParseResult)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ClassDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.ConstantDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FieldAccess)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FieldsDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.FunctionDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.InterfaceDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.MethodDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.NamespaceDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.TraitDeclaration)
meth public void visit(org.netbeans.modules.php.editor.parser.astnodes.Variable)
supr org.netbeans.modules.php.editor.parser.astnodes.visitors.DefaultTreePathVisitor
hfds elementQuery
CLSS public abstract interface org.netbeans.modules.php.spi.annotation.AnnotationParsedLine
innr public final static ParsedLine
meth public abstract boolean startsWithAnnotation()
meth public abstract java.lang.String getDescription()
meth public abstract java.lang.String getName()
meth public abstract java.util.Map<org.netbeans.modules.csl.api.OffsetRange,java.lang.String> getTypes()
CLSS public abstract interface org.netbeans.spi.lexer.Lexer<%0 extends org.netbeans.api.lexer.TokenId>
meth public abstract java.lang.Object state()
meth public abstract org.netbeans.api.lexer.Token<{org.netbeans.spi.lexer.Lexer%0}> nextToken()
meth public abstract void release()
|