Skip to main content
summaryrefslogtreecommitdiffstats
blob: c6dd9f6c2ff0e40eef9d38b70c51ff09f1fdc928 (plain) (blame)
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_12) on Fri May 30 11:16:16 CDT 2008 -->
<TITLE>
C-Index
</TITLE>


<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">

<SCRIPT type="text/javascript">
function windowTitle()
{
    parent.document.title="C-Index";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>

</HEAD>

<BODY BGCOLOR="white" onload="windowTitle();">


<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;<A HREF="index-2.html"><B>PREV LETTER</B></A>&nbsp;
&nbsp;<A HREF="index-4.html"><B>NEXT LETTER</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="../index.html?index-filesindex-3.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="index-3.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>


</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->

<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_ANY"><B>C_ANY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating any type in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_ARRAY"><B>C_ARRAY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating an array type in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_BOOLEAN"><B>C_BOOLEAN</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the primitive type boolean in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_BYTE"><B>C_BYTE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the primitive type byte in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_CAPTURE"><B>C_CAPTURE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating a capture of a wildcard type in a
 signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_CHAR"><B>C_CHAR</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the primitive type char in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_COLON"><B>C_COLON</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the colon in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_COMPILATION_UNIT"><B>C_COMPILATION_UNIT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating a compilation unit.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_DOLLAR"><B>C_DOLLAR</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the dollar in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_DOT"><B>C_DOT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the dot in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_DOUBLE"><B>C_DOUBLE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the primitive type double in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_EXCEPTION_START"><B>C_EXCEPTION_START</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating an exception in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_EXTENDS"><B>C_EXTENDS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating a bound wildcard type argument
 in a signature with extends clause.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_FLOAT"><B>C_FLOAT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the primitive type float in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_GENERIC_END"><B>C_GENERIC_END</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the end of a generic type list in a
 signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_GENERIC_START"><B>C_GENERIC_START</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the start of a formal type parameter
 (or type argument) list in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_INT"><B>C_INT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the primitive type int in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_LONG"><B>C_LONG</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the primitive type long in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_NAME_END"><B>C_NAME_END</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the end of a named type in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_PARAM_END"><B>C_PARAM_END</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the end of a parameter type list in a
 signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_PARAM_START"><B>C_PARAM_START</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the start of a parameter type list in a
 signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_RESOLVED"><B>C_RESOLVED</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the start of a resolved, named type in a
 signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_SEMICOLON"><B>C_SEMICOLON</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the semicolon in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_SHORT"><B>C_SHORT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the primitive type short in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_STAR"><B>C_STAR</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating an unbound wildcard type argument
 in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_SUPER"><B>C_SUPER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating a bound wildcard type argument
 in a signature with super clause.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_TYPE_VARIABLE"><B>C_TYPE_VARIABLE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the start of a resolved type variable in a
 signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_UNRESOLVED"><B>C_UNRESOLVED</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating the start of an unresolved, named type in a
 signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_VOID"><B>C_VOID</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Character constant indicating result type void in a signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#camelCaseMatch(char[], char[])"><B>camelCaseMatch(char[], char[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers true if the pattern matches the given name using CamelCase rules, or false otherwise.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#camelCaseMatch(char[], int, int, char[], int, int)"><B>camelCaseMatch(char[], int, int, char[], int, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers true if a sub-pattern matches the subpart of the given name using CamelCase rules, or false otherwise.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html#camelCaseMatch(java.lang.String, java.lang.String)"><B>camelCaseMatch(String, String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html" title="class in org.eclipse.wst.jsdt.core.search">SearchPattern</A>
<DD>Answers true if the pattern matches the given name using CamelCase rules, or false otherwise.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html#camelCaseMatch(java.lang.String, int, int, java.lang.String, int, int)"><B>camelCaseMatch(String, int, int, String, int, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html" title="class in org.eclipse.wst.jsdt.core.search">SearchPattern</A>
<DD>Answers true if a sub-pattern matches the subpart of the given name using CamelCase rules, or false otherwise.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#CANCEL_IF_NOT_READY_TO_SEARCH"><B>CANCEL_IF_NOT_READY_TO_SEARCH</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html" title="interface in org.eclipse.wst.jsdt.core.search">IJavaScriptSearchConstants</A>
<DD>The search operation throws an <code>org.eclipse.core.runtime.OperationCanceledException</code>
 if the underlying indexer has not finished indexing the workspace.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html#canEdit(org.eclipse.wst.jsdt.ui.wizards.ClasspathAttributeConfiguration.ClasspathAttributeAccess)"><B>canEdit(ClasspathAttributeConfiguration.ClasspathAttributeAccess)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.wizards">ClasspathAttributeConfiguration</A>
<DD>Specifies if the given attribute can be edited.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#CANNOT_RETRIEVE_ATTACHED_JSDOC"><B>CANNOT_RETRIEVE_ATTACHED_JSDOC</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
<DD>Status constant indicating that the attached jsdoc content cannot be retrieved due to multiple reasons:
 invalid url, timed-out,...
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotAllocateVoidArray"><B>CannotAllocateVoidArray</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDeclareEnumSpecialMethod"><B>CannotDeclareEnumSpecialMethod</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDefineAnnotationInLocalType"><B>CannotDefineAnnotationInLocalType</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDefineDimensionExpressionsWithInit"><B>CannotDefineDimensionExpressionsWithInit</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDefineEnumInLocalType"><B>CannotDefineEnumInLocalType</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDefineInterfaceInLocalType"><B>CannotDefineInterfaceInLocalType</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotDefineStaticInitializerInLocalType"><B>CannotDefineStaticInitializerInLocalType</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotExtendEnum"><B>CannotExtendEnum</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotHideAnInstanceMethodWithAStaticMethod"><B>CannotHideAnInstanceMethodWithAStaticMethod</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotImportPackage"><B>CannotImportPackage</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotInvokeSuperConstructorInEnum"><B>CannotInvokeSuperConstructorInEnum</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotOverrideAStaticMethodWithAnInstanceMethod"><B>CannotOverrideAStaticMethodWithAnInstanceMethod</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotReadSource"><B>CannotReadSource</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotReturnOutsideFunction"><B>CannotReturnOutsideFunction</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotThrowNull"><B>CannotThrowNull</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotThrowType"><B>CannotThrowType</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CannotUseSuperInCodeSnippet"><B>CannotUseSuperInCodeSnippet</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html#canRemove(org.eclipse.wst.jsdt.ui.wizards.ClasspathAttributeConfiguration.ClasspathAttributeAccess)"><B>canRemove(ClasspathAttributeConfiguration.ClasspathAttributeAccess)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.wizards">ClasspathAttributeConfiguration</A>
<DD>Specifies if 'Remove' is a valid action on the given attribute.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.html#canUpdateJsGlobalScopeContainer(IPath, org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>canUpdateJsGlobalScopeContainer(IPath, IJavaScriptProject)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.compiler.libraries.<A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">FireFoxLibInitializer</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.html#canUpdateJsGlobalScopeContainer(IPath, org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>canUpdateJsGlobalScopeContainer(IPath, IJavaScriptProject)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.compiler.libraries.<A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">InternetExplorerLibInitializer</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainerInitializer.html#canUpdateJsGlobalScopeContainer(IPath, org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>canUpdateJsGlobalScopeContainer(IPath, IJavaScriptProject)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainerInitializer.html" title="interface in org.eclipse.wst.jsdt.core">IJsGlobalScopeContainerInitializer</A>
<DD>Returns <code>true</code> if this container initializer can be requested to perform updates
 on its own container values.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html#canUpdateJsGlobalScopeContainer(IPath, org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>canUpdateJsGlobalScopeContainer(IPath, IJavaScriptProject)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.core">JsGlobalScopeContainerInitializer</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryJsGlobalScopeContainerInitializer.html#canUpdateJsGlobalScopeContainer(IPath, org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>canUpdateJsGlobalScopeContainer(IPath, IJavaScriptProject)</B></A> - 
Method in class org.eclipse.wst.jsdt.libraries.<A HREF="../org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryJsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.libraries">BasicBrowserLibraryJsGlobalScopeContainerInitializer</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CAP"><B>CAP</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#CAPTION"><B>CAPTION</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#CAPTURE_TYPE_SIGNATURE"><B>CAPTURE_TYPE_SIGNATURE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Kind constant for the capture of a wildcard type signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#CASE_STATEMENT"><B>CASE_STATEMENT</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#CAST_EXPRESSION"><B>CAST_EXPRESSION</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#CAST_EXPRESSION"><B>CAST_EXPRESSION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A>
<DD>Node type constant indicating a node of type
 <code>CastExpression</code>.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/CastExpression.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>CastExpression</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Cast expression AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_BUILDPATH"><B>CAT_BUILDPATH</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for problems related to buildpath
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_CODE_STYLE"><B>CAT_CODE_STYLE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for optional problems related to coding style practices
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_DEPRECATION"><B>CAT_DEPRECATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for optional problems related to deprecation
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_IMPORT"><B>CAT_IMPORT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for fatal problems in import statements
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_INTERNAL"><B>CAT_INTERNAL</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for fatal problems which could not be addressed by external changes, but require an edit to be addressed
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_JAVADOC"><B>CAT_JAVADOC</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for optional problems in Javadoc
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_MEMBER"><B>CAT_MEMBER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for fatal problems related to type members, could be addressed by some field or method change
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_NAME_SHADOWING_CONFLICT"><B>CAT_NAME_SHADOWING_CONFLICT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for optional problems related to naming conflicts
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_NLS"><B>CAT_NLS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for optional problems related to internationalization of String literals
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_POTENTIAL_PROGRAMMING_PROBLEM"><B>CAT_POTENTIAL_PROGRAMMING_PROBLEM</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for optional problems related to potential programming flaws
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_RESTRICTION"><B>CAT_RESTRICTION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for optional problems related to access restrictions
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_SYNTAX"><B>CAT_SYNTAX</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for fatal problems related to syntax
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_TYPE"><B>CAT_TYPE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for fatal problems related to types, could be addressed by some type change
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_UNCHECKED_RAW"><B>CAT_UNCHECKED_RAW</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for optional problems related to type safety in generics
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_UNNECESSARY_CODE"><B>CAT_UNNECESSARY_CODE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>Category for optional problems related to unnecessary code
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CAT_UNSPECIFIED"><B>CAT_UNSPECIFIED</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>List of standard category IDs used by JavaScript problems, more categories will be added
 in the future.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#CATCH_CLAUSE"><B>CATCH_CLAUSE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A>
<DD>Node type constant indicating a node of type
 <code>CatchClause</code>.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/TryStatement.html#CATCH_CLAUSES_PROPERTY"><B>CATCH_CLAUSES_PROPERTY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/TryStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">TryStatement</A>
<DD>The "catchClauses" structural property of this node type.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/CatchClause.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>CatchClause</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Catch clause AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/TryStatement.html#catchClauses()"><B>catchClauses()</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/TryStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">TryStatement</A>
<DD>Returns the live ordered list of catch clauses for this try statement.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler"><B>CategorizedProblem</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/compiler/package-summary.html">org.eclipse.wst.jsdt.core.compiler</A><DD>Richer description of a JavaScript problem, as detected by the compiler or some of the underlying
 technology reusing the compiler.<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html#CategorizedProblem()"><B>CategorizedProblem()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CategorizedProblem.html" title="class in org.eclipse.wst.jsdt.core.compiler">CategorizedProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaElementSorter.html#category(java.lang.Object)"><B>category(Object)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaElementSorter.html" title="class in org.eclipse.wst.jsdt.ui">JavaElementSorter</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementComparator.html#category(java.lang.Object)"><B>category(Object)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementComparator.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementComparator</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#CATEGORY_ID"><B>CATEGORY_ID</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelMarker</A>
<DD>ID category marker attribute (value <code>"categoryId"</code>)
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CCEDIL_L"><B>CCEDIL_L</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CCEDIL_U"><B>CCEDIL_U</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CEDIL"><B>CEDIL</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CENT"><B>CENT</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#CENTER"><B>CENTER</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#CF_POST_QUALIFIED"><B>CF_POST_QUALIFIED</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
<DD>Class file names are post qualified.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#CF_QUALIFIED"><B>CF_QUALIFIED</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
<DD>Class file names are fully qualified.
<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#CHANGE_METHOD_SIGNATURE"><B>CHANGE_METHOD_SIGNATURE</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.refactoring.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html" title="interface in org.eclipse.wst.jsdt.core.refactoring">IJavaScriptRefactorings</A>
<DD>Refactoring id of the 'Change Method Signature' refactoring (value:
 <code>org.eclipse.wst.jsdt.ui.change.method.signature</code>).
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html#CHANGED"><B>CHANGED</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElementDelta.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElementDelta</A>
<DD>Status constant indicating that the element has been changed,
 as described by the change flags.
<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/IndentManipulation.html#changeIndent(java.lang.String, int, int, int, java.lang.String, java.lang.String)"><B>changeIndent(String, int, int, int, String, String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.formatter.<A HREF="../org/eclipse/wst/jsdt/core/formatter/IndentManipulation.html" title="class in org.eclipse.wst.jsdt.core.formatter">IndentManipulation</A>
<DD>Change the indent of a, possible multiple line, code string.
<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ChangeMethodSignatureDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><B>ChangeMethodSignatureDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html">org.eclipse.wst.jsdt.core.refactoring.descriptors</A><DD>Refactoring descriptor for the change method signature refactoring.<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ChangeMethodSignatureDescriptor.html#ChangeMethodSignatureDescriptor()"><B>ChangeMethodSignatureDescriptor()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ChangeMethodSignatureDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ChangeMethodSignatureDescriptor</A>
<DD>Creates a new refactoring descriptor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html#CHAR"><B>CHAR</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html" title="class in org.eclipse.wst.jsdt.core.dom">PrimitiveType</A>
<DD>Type code for the primitive type "char".
<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#CHAR_LITERAL"><B>CHAR_LITERAL</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#CHARACTER_LITERAL"><B>CHARACTER_LITERAL</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A>
<DD>Node type constant indicating a node of type
 <code>CharacterLiteral</code>.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/CharacterLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>CharacterLiteral</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Character literal nodes.<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#charArrayToStringArray(char[][])"><B>charArrayToStringArray(char[][])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Returns the char arrays as an array of Strings
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler"><B>CharOperation</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/compiler/package-summary.html">org.eclipse.wst.jsdt.core.compiler</A><DD>This class is a collection of helper methods to manipulate char arrays.<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#CharOperation()"><B>CharOperation()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#charToString(char[])"><B>charToString(char[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Returns the char array as a String
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/CharacterLiteral.html#charValue()"><B>charValue()</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/CharacterLiteral.html" title="class in org.eclipse.wst.jsdt.core.dom">CharacterLiteral</A>
<DD>Returns the value of this literal node.
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CHI_L"><B>CHI_L</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CHI_U"><B>CHI_U</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ChildListPropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ChildListPropertyDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Descriptor for a child list property of an AST node.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ChildPropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ChildPropertyDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Descriptor for a child property of an AST node.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#chooseClassFolderEntries(Shell, IPath, IPath[])"><B>chooseClassFolderEntries(Shell, IPath, IPath[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI to select new class folders.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#chooseContainerEntries(Shell, org.eclipse.wst.jsdt.core.IJavaScriptProject, org.eclipse.wst.jsdt.core.IIncludePathEntry[])"><B>chooseContainerEntries(Shell, IJavaScriptProject, IIncludePathEntry[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI to choose new classpath container classpath entries.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#chooseExternalJAREntries(Shell)"><B>chooseExternalJAREntries(Shell)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI to select new external JAR or ZIP archive entries.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#chooseJAREntries(Shell, IPath, IPath[])"><B>chooseJAREntries(Shell, IPath, IPath[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI to select new JAR or ZIP archive entries located in the workspace.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#chooseSourceFolderEntries(Shell, IPath, IPath[])"><B>chooseSourceFolderEntries(Shell, IPath, IPath[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI to select new source folders.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#chooseSuperType(Shell, org.eclipse.wst.jsdt.internal.ui.wizards.buildpaths.CPListElement[], org.eclipse.wst.jsdt.core.LibrarySuperType, org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>chooseSuperType(Shell, CPListElement[], LibrarySuperType, IJavaScriptProject)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#chooseVariableEntries(Shell, IPath[])"><B>chooseVariableEntries(Shell, IPath[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI for selecting new variable classpath entries.
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CIRC"><B>CIRC</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#CITE"><B>CITE</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#CL_INIT"><B>CL_INIT</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#CLASS"><B>CLASS</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html" title="interface in org.eclipse.wst.jsdt.core.search">IJavaScriptSearchConstants</A>
<DD>The searched element is a class.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#CLASS_AND_ENUM"><B>CLASS_AND_ENUM</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html" title="interface in org.eclipse.wst.jsdt.core.search">IJavaScriptSearchConstants</A>
<DD>The searched element is a class or enum type.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#CLASS_AND_INTERFACE"><B>CLASS_AND_INTERFACE</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html" title="interface in org.eclipse.wst.jsdt.core.search">IJavaScriptSearchConstants</A>
<DD>The searched element is a class or interface type.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/CodeGeneration.html#CLASS_BODY_TEMPLATE_ID"><B>CLASS_BODY_TEMPLATE_ID</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/CodeGeneration.html" title="class in org.eclipse.wst.jsdt.ui">CodeGeneration</A>
<DD>Constant ID for the type kind to be used in <A HREF="../org/eclipse/wst/jsdt/ui/CodeGeneration.html#getTypeBody(java.lang.String, org.eclipse.wst.jsdt.core.IJavaScriptUnit, java.lang.String, java.lang.String)"><CODE>CodeGeneration.getTypeBody(String, IJavaScriptUnit, String, String)</CODE></A> to get the code template used
 for a new class type body.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html#CLASS_FILE"><B>CLASS_FILE</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptElement.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptElement</A>
<DD>Constant representing a non-editable javaScript file.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#CLASS_INSTANCE_CREATION"><B>CLASS_INSTANCE_CREATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A>
<DD>Node type constant indicating a node of type
 <code>ClassInstanceCreation</code>.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#CLASS_LITERAL_ACCESS"><B>CLASS_LITERAL_ACCESS</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html#CLASS_TYPE"><B>CLASS_TYPE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage</A>
<DD>Constant to signal that the created type is a class.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#CLASS_TYPE_SIGNATURE"><B>CLASS_TYPE_SIGNATURE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Kind constant for a class type signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ClassExtendFinalClass"><B>ClassExtendFinalClass</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ClassInstanceCreation.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ClassInstanceCreation</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Class instance creation expression AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>ClasspathAttributeConfiguration</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>A <A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><CODE>ClasspathAttributeConfiguration</CODE></A> specifies how a <A HREF="../org/eclipse/wst/jsdt/core/IIncludePathAttribute.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>class path attribute</CODE></A> is presented and configured
 in the JavaScript build path dialog.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html#ClasspathAttributeConfiguration()"><B>ClasspathAttributeConfiguration()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.html" title="class in org.eclipse.wst.jsdt.ui.wizards">ClasspathAttributeConfiguration</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.ClasspathAttributeAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards"><B>ClasspathAttributeConfiguration.ClasspathAttributeAccess</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/wizards/package-summary.html">org.eclipse.wst.jsdt.ui.wizards</A><DD>This class provides information about the attribute to be rendered or configured.<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.ClasspathAttributeAccess.html#ClasspathAttributeConfiguration.ClasspathAttributeAccess()"><B>ClasspathAttributeConfiguration.ClasspathAttributeAccess()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/ClasspathAttributeConfiguration.ClasspathAttributeAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">ClasspathAttributeConfiguration.ClasspathAttributeAccess</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/IJsTranslation.html#classpathChange()"><B>classpathChange()</B></A> - 
Method in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/IJsTranslation.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">IJsTranslation</A>
<DD>notify the translation to update any external dependancies that are created during translation
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslation.html#classpathChange()"><B>classpathChange()</B></A> - 
Method in class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslation.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslation</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CLEAN"><B>CLEAN</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option value.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html#cleanStarting(org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>cleanStarting(IJavaScriptProject)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/ValidationParticipant.html" title="class in org.eclipse.wst.jsdt.core.compiler">ValidationParticipant</A>
<DD>Notifies this participant that a clean is about to start and provides it the opportunity to
 delete generated source files.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CLEAR_ALL"><B>CLEAR_ALL</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option value.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IBuffer.html#close()"><B>close()</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IBuffer.html" title="interface in org.eclipse.wst.jsdt.core">IBuffer</A>
<DD>Closes the buffer.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IOpenable.html#close()"><B>close()</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IOpenable.html" title="interface in org.eclipse.wst.jsdt.core">IOpenable</A>
<DD>Closes this element and its buffer (if any).
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CLUBS"><B>CLUBS</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#CODE"><B>CODE</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html#CODE_SNIPPET"><B>CODE_SNIPPET</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.eval.<A HREF="../org/eclipse/wst/jsdt/core/eval/ICodeSnippetRequestor.html" title="interface in org.eclipse.wst.jsdt.core.eval">ICodeSnippetRequestor</A>
<DD>Indicates a compilation problem related to a code snippet.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_ADDIMPORT"><B>CODEASSIST_ADDIMPORT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls if the JavaScript code assist adds import
 statements.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_ARGUMENT_PREFIXES"><B>CODEASSIST_ARGUMENT_PREFIXES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_ARGUMENT_SUFFIXES"><B>CODEASSIST_ARGUMENT_SUFFIXES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_AUTOACTIVATION"><B>CODEASSIST_AUTOACTIVATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls if the JavaScript code assist gets auto activated.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_AUTOACTIVATION_DELAY"><B>CODEASSIST_AUTOACTIVATION_DELAY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A name preference that holds the auto activation delay time in milliseconds.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA"><B>CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVA</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that holds the characters that auto activate code assist in JavaScript code.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC"><B>CODEASSIST_AUTOACTIVATION_TRIGGERS_JAVADOC</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that holds the characters that auto activate code assist in Javadoc.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_AUTOINSERT"><B>CODEASSIST_AUTOINSERT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls if the JavaScript code assist inserts a
 proposal automatically if only one proposal is available.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_CAMEL_CASE_MATCH"><B>CODEASSIST_CAMEL_CASE_MATCH</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_CASE_SENSITIVITY"><B>CODEASSIST_CASE_SENSITIVITY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls whether code assist proposals filtering is case sensitive or not.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_CATEGORY_ORDER"><B>CODEASSIST_CATEGORY_ORDER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls which the order of the specific code assist commands.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_DEPRECATION_CHECK"><B>CODEASSIST_DEPRECATION_CHECK</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_DISCOURAGED_REFERENCE_CHECK"><B>CODEASSIST_DISCOURAGED_REFERENCE_CHECK</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_EXCLUDED_CATEGORIES"><B>CODEASSIST_EXCLUDED_CATEGORIES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls which completion proposal categories
 have been excluded from the default proposal list.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_FAVORITE_STATIC_MEMBERS"><B>CODEASSIST_FAVORITE_STATIC_MEMBERS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that holds the favorite static members.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_FIELD_PREFIXES"><B>CODEASSIST_FIELD_PREFIXES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_FIELD_SUFFIXES"><B>CODEASSIST_FIELD_SUFFIXES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_FILL_ARGUMENT_NAMES"><B>CODEASSIST_FILL_ARGUMENT_NAMES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls if argument names are filled in when a method is selected from as list
 of code assist proposal.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_FORBIDDEN_REFERENCE_CHECK"><B>CODEASSIST_FORBIDDEN_REFERENCE_CHECK</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_GUESS_METHOD_ARGUMENTS"><B>CODEASSIST_GUESS_METHOD_ARGUMENTS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls if method arguments are guessed when a
 method is selected from as list of code assist proposal.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_IMPLICIT_QUALIFICATION"><B>CODEASSIST_IMPLICIT_QUALIFICATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_INSERT_COMPLETION"><B>CODEASSIST_INSERT_COMPLETION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls if the JavaScript code assist only inserts
 completions.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_LOCAL_PREFIXES"><B>CODEASSIST_LOCAL_PREFIXES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_LOCAL_SUFFIXES"><B>CODEASSIST_LOCAL_SUFFIXES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_LRU_HISTORY"><B>CODEASSIST_LRU_HISTORY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that stores the content assist LRU history
 
 Value is an XML encoded version of the history.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_ORDER_PROPOSALS"><B>CODEASSIST_ORDER_PROPOSALS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD><B>Deprecated.</B>&nbsp;<I>use <A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_SORTER"><CODE>PreferenceConstants.CODEASSIST_SORTER</CODE></A> instead</I>
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_PARAMETERS_BACKGROUND"><B>CODEASSIST_PARAMETERS_BACKGROUND</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that holds the background color used for parameter hints.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_PARAMETERS_FOREGROUND"><B>CODEASSIST_PARAMETERS_FOREGROUND</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that holds the foreground color used in the code assist selection dialog.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_PREFIX_COMPLETION"><B>CODEASSIST_PREFIX_COMPLETION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls if content assist inserts the common
 prefix of all proposals before presenting choices.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_PROPOSALS_BACKGROUND"><B>CODEASSIST_PROPOSALS_BACKGROUND</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that holds the background color used in the code assist selection dialog.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_PROPOSALS_FOREGROUND"><B>CODEASSIST_PROPOSALS_FOREGROUND</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that holds the foreground color used in the code assist selection dialog.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_REPLACEMENT_BACKGROUND"><B>CODEASSIST_REPLACEMENT_BACKGROUND</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that holds the background color used in the code
 assist selection dialog to mark replaced code.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_REPLACEMENT_FOREGROUND"><B>CODEASSIST_REPLACEMENT_FOREGROUND</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that holds the foreground color used in the code
 assist selection dialog to mark replaced code.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_SHOW_VISIBLE_PROPOSALS"><B>CODEASSIST_SHOW_VISIBLE_PROPOSALS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls if code assist contains only visible proposals.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEASSIST_SORTER"><B>CODEASSIST_SORTER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that stores the content assist sorter id.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_STATIC_FIELD_PREFIXES"><B>CODEASSIST_STATIC_FIELD_PREFIXES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_STATIC_FIELD_SUFFIXES"><B>CODEASSIST_STATIC_FIELD_SUFFIXES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_SUGGEST_STATIC_IMPORTS"><B>CODEASSIST_SUGGEST_STATIC_IMPORTS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CODEASSIST_VISIBILITY_CHECK"><B>CODEASSIST_VISIBILITY_CHECK</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CodeCannotBeReached"><B>CodeCannotBeReached</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeComplete(java.lang.String, int, org.eclipse.wst.jsdt.core.ICompletionRequestor)"><B>codeComplete(String, int, ICompletionRequestor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.eval.<A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html" title="interface in org.eclipse.wst.jsdt.core.eval">IEvaluationContext</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeComplete(java.lang.String, int, org.eclipse.wst.jsdt.core.CompletionRequestor)"><CODE>IEvaluationContext.codeComplete(String,int,CompletionRequestor)</CODE></A> instead.</I>
<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeComplete(java.lang.String, int, org.eclipse.wst.jsdt.core.ICompletionRequestor, org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><B>codeComplete(String, int, ICompletionRequestor, WorkingCopyOwner)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.eval.<A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html" title="interface in org.eclipse.wst.jsdt.core.eval">IEvaluationContext</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeComplete(java.lang.String, int, org.eclipse.wst.jsdt.core.CompletionRequestor, org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><CODE>IEvaluationContext.codeComplete(String,int,CompletionRequestor,WorkingCopyOwner)</CODE></A> instead.</I>
<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeComplete(java.lang.String, int, org.eclipse.wst.jsdt.core.CompletionRequestor)"><B>codeComplete(String, int, CompletionRequestor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.eval.<A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html" title="interface in org.eclipse.wst.jsdt.core.eval">IEvaluationContext</A>
<DD>Performs a code completion at the given position in the given code snippet,
 reporting results to the given completion requestor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeComplete(java.lang.String, int, org.eclipse.wst.jsdt.core.CompletionRequestor, org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><B>codeComplete(String, int, CompletionRequestor, WorkingCopyOwner)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.eval.<A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html" title="interface in org.eclipse.wst.jsdt.core.eval">IEvaluationContext</A>
<DD>Performs a code completion at the given position in the given code snippet,
 reporting results to the given completion requestor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ICodeAssist.html#codeComplete(int, org.eclipse.wst.jsdt.core.CompletionRequestor)"><B>codeComplete(int, CompletionRequestor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICodeAssist.html" title="interface in org.eclipse.wst.jsdt.core">ICodeAssist</A>
<DD>Performs code completion at the given offset position in this javaScript unit,
 reporting results to the given completion requestor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ICodeAssist.html#codeComplete(int, org.eclipse.wst.jsdt.core.CompletionRequestor, org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><B>codeComplete(int, CompletionRequestor, WorkingCopyOwner)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICodeAssist.html" title="interface in org.eclipse.wst.jsdt.core">ICodeAssist</A>
<DD>Performs code completion at the given offset position in this javaScript unit,
 reporting results to the given completion requestor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#codeComplete(char[], int, int, char[][], char[][], int[], boolean, org.eclipse.wst.jsdt.core.CompletionRequestor)"><B>codeComplete(char[], int, int, char[][], char[][], int[], boolean, CompletionRequestor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
<DD>Do code completion inside a code snippet in the context of the current type.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#codeComplete(char[], int, int, char[][], char[][], int[], boolean, org.eclipse.wst.jsdt.core.CompletionRequestor, org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><B>codeComplete(char[], int, int, char[][], char[][], int[], boolean, CompletionRequestor, WorkingCopyOwner)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
<DD>Do code completion inside a code snippet in the context of the current type.
<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html" title="class in org.eclipse.wst.jsdt.core.formatter"><B>CodeFormatter</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/formatter/package-summary.html">org.eclipse.wst.jsdt.core.formatter</A><DD>Specification for a generic source code formatter.<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#CodeFormatter()"><B>CodeFormatter()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.formatter.<A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html" title="class in org.eclipse.wst.jsdt.core.formatter">CodeFormatter</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatterApplication.html" title="class in org.eclipse.wst.jsdt.core.formatter"><B>CodeFormatterApplication</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/formatter/package-summary.html">org.eclipse.wst.jsdt.core.formatter</A><DD>Implements an Eclipse Application for org.eclipse.wst.jsdt.core.JavaCodeFormatter.<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatterApplication.html#CodeFormatterApplication()"><B>CodeFormatterApplication()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.formatter.<A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatterApplication.html" title="class in org.eclipse.wst.jsdt.core.formatter">CodeFormatterApplication</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_ADD_COMMENTS"><B>CODEGEN_ADD_COMMENTS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls if comment stubs will be added
 automatically to newly created types and methods.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_EXCEPTION_VAR_NAME"><B>CODEGEN_EXCEPTION_VAR_NAME</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that defines the preferred variable names for exceptions in
 catch clauses.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_GETTERSETTER_PREFIX"><B>CODEGEN_GETTERSETTER_PREFIX</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use JavaScriptCore preference store (key JavaScriptCore.
 CODEASSIST_FIELD_PREFIXES and CODEASSIST_STATIC_FIELD_PREFIXES)</I>
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_GETTERSETTER_SUFFIX"><B>CODEGEN_GETTERSETTER_SUFFIX</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use setting from JavaScriptCore preference store (key JavaScriptCore.
 CODEASSIST_FIELD_SUFFIXES and CODEASSIST_STATIC_FIELD_SUFFIXES)</I>
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_IS_FOR_GETTERS"><B>CODEGEN_IS_FOR_GETTERS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls whether to use the prefix "is" or the prefix "get" for
 automatically created getters which return a boolean field.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_KEYWORD_THIS"><B>CODEGEN_KEYWORD_THIS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls whether the keyword "this" will be added
 automatically to field accesses in generated methods.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_USE_GETTERSETTER_PREFIX"><B>CODEGEN_USE_GETTERSETTER_PREFIX</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use JavaScriptCore preference store (key JavaScriptCore.
 CODEASSIST_FIELD_PREFIXES and CODEASSIST_STATIC_FIELD_PREFIXES)</I>
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_USE_GETTERSETTER_SUFFIX"><B>CODEGEN_USE_GETTERSETTER_SUFFIX</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use JavaScriptCore preference store (key JavaScriptCore.
 CODEASSIST_FIELD_PREFIXES and CODEASSIST_STATIC_FIELD_PREFIXES)</I>
<DT><A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html#CODEGEN_USE_OVERRIDE_ANNOTATION"><B>CODEGEN_USE_OVERRIDE_ANNOTATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/PreferenceConstants.html" title="class in org.eclipse.wst.jsdt.ui">PreferenceConstants</A>
<DD>A named preference that controls whether to add a override annotation for newly created methods
 
 Value is of type <code>Boolean</code>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/CodeGeneration.html" title="class in org.eclipse.wst.jsdt.ui"><B>CodeGeneration</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
 change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeSelect(java.lang.String, int, int)"><B>codeSelect(String, int, int)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.eval.<A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html" title="interface in org.eclipse.wst.jsdt.core.eval">IEvaluationContext</A>
<DD>Resolves and returns a collection of JavaScript elements corresponding to the source
 code at the given positions in the given code snippet.
<DT><A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html#codeSelect(java.lang.String, int, int, org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><B>codeSelect(String, int, int, WorkingCopyOwner)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.eval.<A HREF="../org/eclipse/wst/jsdt/core/eval/IEvaluationContext.html" title="interface in org.eclipse.wst.jsdt.core.eval">IEvaluationContext</A>
<DD>Resolves and returns a collection of JavaScript elements corresponding to the source
 code at the given positions in the given code snippet.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ICodeAssist.html#codeSelect(int, int)"><B>codeSelect(int, int)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICodeAssist.html" title="interface in org.eclipse.wst.jsdt.core">ICodeAssist</A>
<DD>Returns the JavaScript elements corresponding to the given selected text in this javaScript unit.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ICodeAssist.html#codeSelect(int, int, org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><B>codeSelect(int, int, WorkingCopyOwner)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ICodeAssist.html" title="interface in org.eclipse.wst.jsdt.core">ICodeAssist</A>
<DD>Returns the JavaScript elements corresponding to the given selected text in this javaScript unit.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CodeSnippetMissingClass"><B>CodeSnippetMissingClass</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CodeSnippetMissingMethod"><B>CodeSnippetMissingMethod</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/CodeStyleConfiguration.html" title="class in org.eclipse.wst.jsdt.ui"><B>CodeStyleConfiguration</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/package-summary.html">org.eclipse.wst.jsdt.ui</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
 change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#COL"><B>COL</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html#COLGROUP"><B>COLGROUP</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.ElementName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.ElementName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/folding/DefaultJavaFoldingStructureProvider.html#collapseComments()"><B>collapseComments()</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.folding.<A HREF="../org/eclipse/wst/jsdt/ui/text/folding/DefaultJavaFoldingStructureProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.folding">DefaultJavaFoldingStructureProvider</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProviderExtension.html#collapseComments()"><B>collapseComments()</B></A> - 
Method in interface org.eclipse.wst.jsdt.ui.text.folding.<A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProviderExtension.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding">IJavaFoldingStructureProviderExtension</A>
<DD>Collapses all comments.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/folding/DefaultJavaFoldingStructureProvider.html#collapseElements(org.eclipse.wst.jsdt.core.IJavaScriptElement[])"><B>collapseElements(IJavaScriptElement[])</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.folding.<A HREF="../org/eclipse/wst/jsdt/ui/text/folding/DefaultJavaFoldingStructureProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.folding">DefaultJavaFoldingStructureProvider</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProviderExtension.html#collapseElements(org.eclipse.wst.jsdt.core.IJavaScriptElement[])"><B>collapseElements(IJavaScriptElement[])</B></A> - 
Method in interface org.eclipse.wst.jsdt.ui.text.folding.<A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProviderExtension.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding">IJavaFoldingStructureProviderExtension</A>
<DD>Collapses the given elements.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/folding/DefaultJavaFoldingStructureProvider.html#collapseMembers()"><B>collapseMembers()</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.folding.<A HREF="../org/eclipse/wst/jsdt/ui/text/folding/DefaultJavaFoldingStructureProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.folding">DefaultJavaFoldingStructureProvider</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProviderExtension.html#collapseMembers()"><B>collapseMembers()</B></A> - 
Method in interface org.eclipse.wst.jsdt.ui.text.folding.<A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingStructureProviderExtension.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding">IJavaFoldingStructureProviderExtension</A>
<DD>Collapses all members except for top level types.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ForInStatement.html#COLLECTION_PROPERTY"><B>COLLECTION_PROPERTY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ForInStatement.html" title="class in org.eclipse.wst.jsdt.core.dom">ForInStatement</A>
<DD>The "expression" structural property of this node type.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html#combineAccessRules()"><B>combineAccessRules()</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html" title="interface in org.eclipse.wst.jsdt.core">IIncludePathEntry</A>
<DD>Returns whether the access rules of the project's exported entries should be combined with this entry's access rules.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#COMBINED_BINARY_EXPRESSION"><B>COMBINED_BINARY_EXPRESSION</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#COMMA_STRING"><B>COMMA_STRING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
<DD>User-readable string for separating list items (e.g. ", ").
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/Comment.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>Comment</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Abstract base class for all AST nodes that represent comments.<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/JSdoc.html#COMMENT_PROPERTY"><B>COMMENT_PROPERTY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/JSdoc.html" title="class in org.eclipse.wst.jsdt.core.dom">JSdoc</A>
<DD><B>Deprecated.</B>&nbsp;<I>Replaced by <A HREF="../org/eclipse/wst/jsdt/core/dom/JSdoc.html#TAGS_PROPERTY"><CODE>JSdoc.TAGS_PROPERTY</CODE></A> in the JLS3 API.</I>
<DT><A HREF="../org/eclipse/wst/jsdt/core/IWorkingCopy.html#commit(boolean, IProgressMonitor)"><B>commit(boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IWorkingCopy.html" title="interface in org.eclipse.wst.jsdt.core">IWorkingCopy</A>
<DD><B>Deprecated.</B>&nbsp;<I>Use <A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#commitWorkingCopy(boolean, IProgressMonitor)"><CODE>IJavaScriptUnit.commitWorkingCopy(boolean, IProgressMonitor)</CODE></A> instead.</I>
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#commitWorkingCopy(boolean, IProgressMonitor)"><B>commitWorkingCopy(boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptUnit</A>
<DD>Commits the contents of this working copy to its underlying resource.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPACT"><B>COMPACT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option value.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaElementSorter.html#compare(Viewer, java.lang.Object, java.lang.Object)"><B>compare(Viewer, Object, Object)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaElementSorter.html" title="class in org.eclipse.wst.jsdt.ui">JavaElementSorter</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementComparator.html#compare(Viewer, java.lang.Object, java.lang.Object)"><B>compare(Viewer, Object, Object)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementComparator.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementComparator</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/AbstractProposalSorter.html#compare(ICompletionProposal, ICompletionProposal)"><B>compare(ICompletionProposal, ICompletionProposal)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/AbstractProposalSorter.html" title="class in org.eclipse.wst.jsdt.ui.text.java">AbstractProposalSorter</A>
<DD>Implements the same contract as <CODE>Comparator.compare(Object, Object)</CODE> but with
 completion proposals as parameters.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalComparator.html#compare(java.lang.Object, java.lang.Object)"><B>compare(Object, Object)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalComparator.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalComparator</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#compareTo(char[], char[])"><B>compareTo(char[], char[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Compares the two char arrays lexicographically.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#compareWith(char[], char[])"><B>compareWith(char[], char[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Compares the contents of the two arrays array and prefix.
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/CompilationUnitHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript"><B>CompilationUnitHelper</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/web/core/javascript/package-summary.html">org.eclipse.wst.jsdt.web.core.javascript</A><DD>Provisional API: This class/interface is part of an interim API that is still under development and expected to
 change significantly before reaching stability.<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_CODEGEN_INLINE_JSR_BYTECODE"><B>COMPILER_CODEGEN_INLINE_JSR_BYTECODE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_CODEGEN_TARGET_PLATFORM"><B>COMPILER_CODEGEN_TARGET_PLATFORM</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_CODEGEN_UNUSED_LOCAL"><B>COMPILER_CODEGEN_UNUSED_LOCAL</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_COMPLIANCE"><B>COMPILER_COMPLIANCE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_DOC_COMMENT_SUPPORT"><B>COMPILER_DOC_COMMENT_SUPPORT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_LINE_NUMBER_ATTR"><B>COMPILER_LINE_NUMBER_ATTR</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_LOCAL_VARIABLE_ATTR"><B>COMPILER_LOCAL_VARIABLE_ATTR</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_ANNOTATION_SUPER_INTERFACE"><B>COMPILER_PB_ANNOTATION_SUPER_INTERFACE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_ASSERT_IDENTIFIER"><B>COMPILER_PB_ASSERT_IDENTIFIER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_AUTOBOXING"><B>COMPILER_PB_AUTOBOXING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_BOOLEAN_METHOD_THROWING_EXCEPTION"><B>COMPILER_PB_BOOLEAN_METHOD_THROWING_EXCEPTION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_CHAR_ARRAY_IN_STRING_CONCATENATION"><B>COMPILER_PB_CHAR_ARRAY_IN_STRING_CONCATENATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_DEPRECATION"><B>COMPILER_PB_DEPRECATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_DEPRECATION_IN_DEPRECATED_CODE"><B>COMPILER_PB_DEPRECATION_IN_DEPRECATED_CODE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_DEPRECATION_WHEN_OVERRIDING_DEPRECATED_METHOD"><B>COMPILER_PB_DEPRECATION_WHEN_OVERRIDING_DEPRECATED_METHOD</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_DISCOURAGED_REFERENCE"><B>COMPILER_PB_DISCOURAGED_REFERENCE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_EMPTY_STATEMENT"><B>COMPILER_PB_EMPTY_STATEMENT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_ENUM_IDENTIFIER"><B>COMPILER_PB_ENUM_IDENTIFIER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FALLTHROUGH_CASE"><B>COMPILER_PB_FALLTHROUGH_CASE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FATAL_OPTIONAL_ERROR"><B>COMPILER_PB_FATAL_OPTIONAL_ERROR</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FIELD_HIDING"><B>COMPILER_PB_FIELD_HIDING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FINAL_PARAMETER_BOUND"><B>COMPILER_PB_FINAL_PARAMETER_BOUND</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FINALLY_BLOCK_NOT_COMPLETING"><B>COMPILER_PB_FINALLY_BLOCK_NOT_COMPLETING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_FORBIDDEN_REFERENCE"><B>COMPILER_PB_FORBIDDEN_REFERENCE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_HIDDEN_CATCH_BLOCK"><B>COMPILER_PB_HIDDEN_CATCH_BLOCK</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INCOMPATIBLE_NON_INHERITED_INTERFACE_METHOD"><B>COMPILER_PB_INCOMPATIBLE_NON_INHERITED_INTERFACE_METHOD</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INCOMPLETE_ENUM_SWITCH"><B>COMPILER_PB_INCOMPLETE_ENUM_SWITCH</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INCONSISTENT_NULL_CHECK"><B>COMPILER_PB_INCONSISTENT_NULL_CHECK</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD><B>Deprecated.</B>&nbsp;<I>use <A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_NULL_REFERENCE"><CODE>JavaScriptCore.COMPILER_PB_NULL_REFERENCE</CODE></A> instead</I>
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INDIRECT_STATIC_ACCESS"><B>COMPILER_PB_INDIRECT_STATIC_ACCESS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_IMPORT"><B>COMPILER_PB_INVALID_IMPORT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD><B>Deprecated.</B>&nbsp;<I>- discontinued since turning off would violate language specs</I>
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_JAVADOC"><B>COMPILER_PB_INVALID_JAVADOC</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_JAVADOC_TAGS"><B>COMPILER_PB_INVALID_JAVADOC_TAGS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_JAVADOC_TAGS__DEPRECATED_REF"><B>COMPILER_PB_INVALID_JAVADOC_TAGS__DEPRECATED_REF</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_JAVADOC_TAGS__NOT_VISIBLE_REF"><B>COMPILER_PB_INVALID_JAVADOC_TAGS__NOT_VISIBLE_REF</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_INVALID_JAVADOC_TAGS_VISIBILITY"><B>COMPILER_PB_INVALID_JAVADOC_TAGS_VISIBILITY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_LOCAL_VARIABLE_HIDING"><B>COMPILER_PB_LOCAL_VARIABLE_HIDING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MAX_PER_UNIT"><B>COMPILER_PB_MAX_PER_UNIT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_METHOD_WITH_CONSTRUCTOR_NAME"><B>COMPILER_PB_METHOD_WITH_CONSTRUCTOR_NAME</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_DEPRECATED_ANNOTATION"><B>COMPILER_PB_MISSING_DEPRECATED_ANNOTATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_COMMENTS"><B>COMPILER_PB_MISSING_JAVADOC_COMMENTS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_COMMENTS_OVERRIDING"><B>COMPILER_PB_MISSING_JAVADOC_COMMENTS_OVERRIDING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_COMMENTS_VISIBILITY"><B>COMPILER_PB_MISSING_JAVADOC_COMMENTS_VISIBILITY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_TAGS"><B>COMPILER_PB_MISSING_JAVADOC_TAGS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_TAGS_OVERRIDING"><B>COMPILER_PB_MISSING_JAVADOC_TAGS_OVERRIDING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_JAVADOC_TAGS_VISIBILITY"><B>COMPILER_PB_MISSING_JAVADOC_TAGS_VISIBILITY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_OVERRIDE_ANNOTATION"><B>COMPILER_PB_MISSING_OVERRIDE_ANNOTATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_MISSING_SERIAL_VERSION"><B>COMPILER_PB_MISSING_SERIAL_VERSION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_NO_EFFECT_ASSIGNMENT"><B>COMPILER_PB_NO_EFFECT_ASSIGNMENT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_NON_NLS_STRING_LITERAL"><B>COMPILER_PB_NON_NLS_STRING_LITERAL</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_NULL_REFERENCE"><B>COMPILER_PB_NULL_REFERENCE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_OVERRIDING_METHOD_WITHOUT_SUPER_INVOCATION"><B>COMPILER_PB_OVERRIDING_METHOD_WITHOUT_SUPER_INVOCATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_PARAMETER_ASSIGNMENT"><B>COMPILER_PB_PARAMETER_ASSIGNMENT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_POSSIBLE_ACCIDENTAL_BOOLEAN_ASSIGNMENT"><B>COMPILER_PB_POSSIBLE_ACCIDENTAL_BOOLEAN_ASSIGNMENT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_POTENTIAL_NULL_REFERENCE"><B>COMPILER_PB_POTENTIAL_NULL_REFERENCE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_RAW_TYPE_REFERENCE"><B>COMPILER_PB_RAW_TYPE_REFERENCE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_REDUNDANT_NULL_CHECK"><B>COMPILER_PB_REDUNDANT_NULL_CHECK</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_SPECIAL_PARAMETER_HIDING_FIELD"><B>COMPILER_PB_SPECIAL_PARAMETER_HIDING_FIELD</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_STATIC_ACCESS_RECEIVER"><B>COMPILER_PB_STATIC_ACCESS_RECEIVER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_SUPPRESS_WARNINGS"><B>COMPILER_PB_SUPPRESS_WARNINGS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_SYNTHETIC_ACCESS_EMULATION"><B>COMPILER_PB_SYNTHETIC_ACCESS_EMULATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_TYPE_PARAMETER_HIDING"><B>COMPILER_PB_TYPE_PARAMETER_HIDING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNCHECKED_TYPE_OPERATION"><B>COMPILER_PB_UNCHECKED_TYPE_OPERATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNDEFINED_FIELD"><B>COMPILER_PB_UNDEFINED_FIELD</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNDOCUMENTED_EMPTY_BLOCK"><B>COMPILER_PB_UNDOCUMENTED_EMPTY_BLOCK</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNHANDLED_WARNING_TOKEN"><B>COMPILER_PB_UNHANDLED_WARNING_TOKEN</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNNECESSARY_ELSE"><B>COMPILER_PB_UNNECESSARY_ELSE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNNECESSARY_TYPE_CHECK"><B>COMPILER_PB_UNNECESSARY_TYPE_CHECK</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNQUALIFIED_FIELD_ACCESS"><B>COMPILER_PB_UNQUALIFIED_FIELD_ACCESS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNREACHABLE_CODE"><B>COMPILER_PB_UNREACHABLE_CODE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD><B>Deprecated.</B>&nbsp;<I>- discontinued since turning off would violate language specs</I>
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNSAFE_TYPE_OPERATION"><B>COMPILER_PB_UNSAFE_TYPE_OPERATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD><B>Deprecated.</B>&nbsp;<I>- got renamed into <A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNCHECKED_TYPE_OPERATION"><CODE>JavaScriptCore.COMPILER_PB_UNCHECKED_TYPE_OPERATION</CODE></A></I>
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION"><B>COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION_WHEN_OVERRIDING"><B>COMPILER_PB_UNUSED_DECLARED_THROWN_EXCEPTION_WHEN_OVERRIDING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_IMPORT"><B>COMPILER_PB_UNUSED_IMPORT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_LABEL"><B>COMPILER_PB_UNUSED_LABEL</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_LOCAL"><B>COMPILER_PB_UNUSED_LOCAL</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_PARAMETER"><B>COMPILER_PB_UNUSED_PARAMETER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_PARAMETER_INCLUDE_DOC_COMMENT_REFERENCE"><B>COMPILER_PB_UNUSED_PARAMETER_INCLUDE_DOC_COMMENT_REFERENCE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_PARAMETER_WHEN_IMPLEMENTING_ABSTRACT"><B>COMPILER_PB_UNUSED_PARAMETER_WHEN_IMPLEMENTING_ABSTRACT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_PARAMETER_WHEN_OVERRIDING_CONCRETE"><B>COMPILER_PB_UNUSED_PARAMETER_WHEN_OVERRIDING_CONCRETE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_UNUSED_PRIVATE_MEMBER"><B>COMPILER_PB_UNUSED_PRIVATE_MEMBER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_PB_VARARGS_ARGUMENT_NEED_CAST"><B>COMPILER_PB_VARARGS_ARGUMENT_NEED_CAST</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_SOURCE"><B>COMPILER_SOURCE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_SOURCE_FILE_ATTR"><B>COMPILER_SOURCE_FILE_ATTR</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_CASE_SENSITIVE"><B>COMPILER_TASK_CASE_SENSITIVE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_PRIORITIES"><B>COMPILER_TASK_PRIORITIES</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_PRIORITY_HIGH"><B>COMPILER_TASK_PRIORITY_HIGH</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option value for COMPILER_TASK_PRIORITIES.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_PRIORITY_LOW"><B>COMPILER_TASK_PRIORITY_LOW</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option value for COMPILER_TASK_PRIORITIES.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_PRIORITY_NORMAL"><B>COMPILER_TASK_PRIORITY_NORMAL</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option value for COMPILER_TASK_PRIORITIES.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPILER_TASK_TAGS"><B>COMPILER_TASK_TAGS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html#COMPLEMENT"><B>COMPLEMENT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrefixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">PrefixExpression.Operator</A>
<DD>Bitwise complement "~" operator.
<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionContext.html" title="class in org.eclipse.wst.jsdt.core"><B>CompletionContext</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>Completion context.<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionContext.html#CompletionContext()"><B>CompletionContext()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionContext.html" title="class in org.eclipse.wst.jsdt.core">CompletionContext</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#completionFailure(org.eclipse.wst.jsdt.core.compiler.IProblem)"><B>completionFailure(IProblem)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html" title="class in org.eclipse.wst.jsdt.core">CompletionRequestor</A>
<DD>Notification of failure to produce any completions.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html#completionFailure(org.eclipse.wst.jsdt.core.compiler.IProblem)"><B>completionFailure(IProblem)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalCollector</A>
<DD>Notification of failure to produce any completions.

 Subclasses may extend, but must call the super implementation.
<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionFlags.html" title="class in org.eclipse.wst.jsdt.core"><B>CompletionFlags</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>Utility class for decoding additional flags in completion proposal.<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core"><B>CompletionProposal</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>Completion proposal.<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html" title="class in org.eclipse.wst.jsdt.ui.text.java"><B>CompletionProposalCollector</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/text/java/package-summary.html">org.eclipse.wst.jsdt.ui.text.java</A><DD>JavaScript UI implementation of <code>CompletionRequestor</code>.<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html#CompletionProposalCollector(org.eclipse.wst.jsdt.core.IJavaScriptUnit)"><B>CompletionProposalCollector(IJavaScriptUnit)</B></A> - 
Constructor for class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalCollector</A>
<DD>Creates a new instance ready to collect proposals.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html#CompletionProposalCollector(org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>CompletionProposalCollector(IJavaScriptProject)</B></A> - 
Constructor for class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalCollector.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalCollector</A>
<DD>Creates a new instance ready to collect proposals.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalComparator.html" title="class in org.eclipse.wst.jsdt.ui.text.java"><B>CompletionProposalComparator</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/text/java/package-summary.html">org.eclipse.wst.jsdt.ui.text.java</A><DD>Comparator for JavaScript completion proposals.<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalComparator.html#CompletionProposalComparator()"><B>CompletionProposalComparator()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalComparator.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalComparator</A>
<DD>Creates a comparator that sorts by relevance.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.java"><B>CompletionProposalLabelProvider</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/text/java/package-summary.html">org.eclipse.wst.jsdt.ui.text.java</A><DD>Provides labels for JavaScript content assist proposals.<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html#CompletionProposalLabelProvider()"><B>CompletionProposalLabelProvider()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalLabelProvider</A>
<DD>Creates a new label provider.
<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html" title="class in org.eclipse.wst.jsdt.core"><B>CompletionRequestor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>Abstract base class for a completion requestor which is passed completion
 proposals as they are generated in response to a code assist request.<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html#CompletionRequestor()"><B>CompletionRequestor()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionRequestor.html" title="class in org.eclipse.wst.jsdt.core">CompletionRequestor</A>
<DD>Creates a new completion requestor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayType.html#COMPONENT_TYPE_PROPERTY"><B>COMPONENT_TYPE_PROPERTY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ArrayType.html" title="class in org.eclipse.wst.jsdt.core.dom">ArrayType</A>
<DD>The "componentType" structural property of this node type.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#COMPOUND_ASSIGNMENT"><B>COMPOUND_ASSIGNMENT</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#COMPUTE"><B>COMPUTE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option value.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html#computeAdornmentFlags(java.lang.Object)"><B>computeAdornmentFlags(Object)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/OverrideIndicatorLabelDecorator.html" title="class in org.eclipse.wst.jsdt.ui">OverrideIndicatorLabelDecorator</A>
<DD>Note: This method is for internal use only.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/IJavaCompletionProposalComputer.html#computeCompletionProposals(org.eclipse.wst.jsdt.ui.text.java.ContentAssistInvocationContext, IProgressMonitor)"><B>computeCompletionProposals(ContentAssistInvocationContext, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/IJavaCompletionProposalComputer.html" title="interface in org.eclipse.wst.jsdt.ui.text.java">IJavaCompletionProposalComputer</A>
<DD>Returns a list of completion proposals valid at the given invocation context.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/IJavadocCompletionProcessor.html#computeCompletionProposals(org.eclipse.wst.jsdt.core.IJavaScriptUnit, int, int, int)"><B>computeCompletionProposals(IJavaScriptUnit, int, int, int)</B></A> - 
Method in interface org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/IJavadocCompletionProcessor.html" title="interface in org.eclipse.wst.jsdt.ui.text.java">IJavadocCompletionProcessor</A>
<DD>Returns the completion proposals based on the specified location
 within the compilation unit.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/IJavaCompletionProposalComputer.html#computeContextInformation(org.eclipse.wst.jsdt.ui.text.java.ContentAssistInvocationContext, IProgressMonitor)"><B>computeContextInformation(ContentAssistInvocationContext, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/IJavaCompletionProposalComputer.html" title="interface in org.eclipse.wst.jsdt.ui.text.java">IJavaCompletionProposalComputer</A>
<DD>Returns context information objects valid at the given invocation context.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/IJavadocCompletionProcessor.html#computeContextInformation(org.eclipse.wst.jsdt.core.IJavaScriptUnit, int)"><B>computeContextInformation(IJavaScriptUnit, int)</B></A> - 
Method in interface org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/IJavadocCompletionProcessor.html" title="interface in org.eclipse.wst.jsdt.ui.text.java">IJavadocCompletionProcessor</A>
<DD>Returns information about possible contexts based on the
 specified location within the compilation unit.
<DT><A HREF="../org/eclipse/wst/jsdt/core/CorrectionEngine.html#computeCorrections(IMarker, org.eclipse.wst.jsdt.core.IJavaScriptUnit, int, org.eclipse.wst.jsdt.core.ICorrectionRequestor)"><B>computeCorrections(IMarker, IJavaScriptUnit, int, ICorrectionRequestor)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CorrectionEngine.html" title="class in org.eclipse.wst.jsdt.core">CorrectionEngine</A>
<DD>Performs code correction for the given marker,
 reporting results to the given correction requestor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/CorrectionEngine.html#computeCorrections(org.eclipse.wst.jsdt.core.compiler.IProblem, org.eclipse.wst.jsdt.core.IJavaScriptUnit, org.eclipse.wst.jsdt.core.ICorrectionRequestor)"><B>computeCorrections(IProblem, IJavaScriptUnit, ICorrectionRequestor)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CorrectionEngine.html" title="class in org.eclipse.wst.jsdt.core">CorrectionEngine</A>
<DD>Performs code correction for the given IProblem,
 reporting results to the given correction requestor.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html#computeIdentifierPrefix()"><B>computeIdentifierPrefix()</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java">ContentAssistInvocationContext</A>
<DD>Computes the identifier (as specified by <CODE>Character.isJavaIdentifierPart(char)</CODE>) that
 immediately precedes the invocation offset.
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchSupport.html#computeIndexLocation(IPath)"><B>computeIndexLocation(IPath)</B></A> - 
Method in class org.eclipse.wst.jsdt.web.core.javascript.search.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/search/JsSearchSupport.html" title="class in org.eclipse.wst.jsdt.web.core.javascript.search">JsSearchSupport</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/TargetSourceRangeComputer.html#computeSourceRange(org.eclipse.wst.jsdt.core.dom.ASTNode)"><B>computeSourceRange(ASTNode)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/TargetSourceRangeComputer.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">TargetSourceRangeComputer</A>
<DD>Returns the target source range of the given node.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#concat(char[], char[])"><B>concat(char[], char[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers the concatenation of the two arrays.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#concat(char[], char[], char[])"><B>concat(char[], char[], char[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers the concatenation of the three arrays.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#concat(char[], char[], char)"><B>concat(char[], char[], char)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers the concatenation of the two arrays inserting the separator character between the two arrays.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#concat(char[], char, char[], char, char[])"><B>concat(char[], char, char[], char, char[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers the concatenation of the three arrays inserting the sep1 character between the
 first two arrays and sep2 between the last two.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#concat(char, char[], char)"><B>concat(char, char[], char)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers a new array with prepending the prefix character and appending the suffix
 character at the end of the array.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#CONCAT_STRING"><B>CONCAT_STRING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
<DD>User-readable string for separating post qualified names (e.g. " - ").
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#concatWith(char[], char[][], char)"><B>concatWith(char[], char[][], char)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers the concatenation of the given array parts using the given separator between each
 part and appending the given name at the end.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#concatWith(char[][], char[], char)"><B>concatWith(char[][], char[], char)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers the concatenation of the given array parts using the given separator between each
 part and appending the given name at the end.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#concatWith(char[][], char)"><B>concatWith(char[][], char)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers the concatenation of the given array parts using the given separator between each part.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#CONDITIONAL_AND"><B>CONDITIONAL_AND</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
<DD>Conditional AND "&amp;&amp;" operator.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#CONDITIONAL_EXPRESSION"><B>CONDITIONAL_EXPRESSION</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#CONDITIONAL_EXPRESSION"><B>CONDITIONAL_EXPRESSION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A>
<DD>Node type constant indicating a node of type
 <code>ConditionalExpression</code>.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html#CONDITIONAL_OR"><B>CONDITIONAL_OR</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/InfixExpression.Operator.html" title="class in org.eclipse.wst.jsdt.core.dom">InfixExpression.Operator</A>
<DD>Conditional OR "||" operator.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ConditionalExpression.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ConditionalExpression</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Conditional expression AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/ui/project/JsNature.html#configure()"><B>configure()</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.project.<A HREF="../org/eclipse/wst/jsdt/ui/project/JsNature.html" title="class in org.eclipse.wst.jsdt.ui.project">JsNature</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#configureContainerEntry(Shell, org.eclipse.wst.jsdt.core.IIncludePathEntry, org.eclipse.wst.jsdt.core.IJavaScriptProject, org.eclipse.wst.jsdt.core.IIncludePathEntry[])"><B>configureContainerEntry(Shell, IIncludePathEntry, IJavaScriptProject, IIncludePathEntry[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI to configure a classpath container classpath entry.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#configureExternalJAREntry(Shell, IPath)"><B>configureExternalJAREntry(Shell, IPath)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI to configure an external JAR or ZIP archive.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#configureJAREntry(Shell, IPath, IPath[])"><B>configureJAREntry(Shell, IPath, IPath[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI to configure a JAR or ZIP archive located in the workspace.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#configureJavadocLocation(Shell, java.lang.String, java.net.URL)"><B>configureJavadocLocation(Shell, String, URL)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI for configuring a javadoc location.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#configureJavadocLocation(Shell, org.eclipse.wst.jsdt.core.IIncludePathEntry)"><B>configureJavadocLocation(Shell, IIncludePathEntry)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI for configuring a javadoc location attribute of the classpath entry.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html#configureJavaProject(IProgressMonitor)"><B>configureJavaProject(IProgressMonitor)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">JavaCapabilityConfigurationPage</A>
<DD>Adds the JavaScript nature to the project (if not set yet) and configures the build classpath.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#configureJavaScriptElementMarker(IMarker, org.eclipse.wst.jsdt.core.IJavaScriptElement)"><B>configureJavaScriptElementMarker(IMarker, IJavaScriptElement)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Configures the given marker for the given JavaScript element.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#configureSourceAttachment(Shell, org.eclipse.wst.jsdt.core.IIncludePathEntry)"><B>configureSourceAttachment(Shell, IIncludePathEntry)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI for configuring source attachments.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html#configureVariableEntry(Shell, IPath, IPath[])"><B>configureVariableEntry(Shell, IPath, IPath[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BuildPathDialogAccess.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BuildPathDialogAccess</A>
<DD>Shows the UI for configuring a variable classpath entry.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ConflictingImport"><B>ConflictingImport</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CONG"><B>CONG</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IWorkingCopyManager.html#connect(IEditorInput)"><B>connect(IEditorInput)</B></A> - 
Method in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IWorkingCopyManager.html" title="interface in org.eclipse.wst.jsdt.ui">IWorkingCopyManager</A>
<DD>Connects the given editor input to this manager.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_ALL_TYPES"><B>CONSIDER_ALL_TYPES</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A>
<DD>Search scope constant indicating that classes, interfaces, annotations
 and enums should be considered.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_ANNOTATION_TYPES"><B>CONSIDER_ANNOTATION_TYPES</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A>
<DD>Search scope constant indicating that annotation types should be considered.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_BINARIES"><B>CONSIDER_BINARIES</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A>
<DD>Search scope constant (bit mask) indicating that binaries should be considered.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_CLASSES"><B>CONSIDER_CLASSES</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A>
<DD>Search scope constant indicating that classes should be considered.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_CLASSES_AND_ENUMS"><B>CONSIDER_CLASSES_AND_ENUMS</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A>
<DD>Search scope constant indicating that only classes and enumeration types 
 should be considered.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_CLASSES_AND_INTERFACES"><B>CONSIDER_CLASSES_AND_INTERFACES</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A>
<DD>Search scope constant indicating that only classes and interfaces 
 should be considered.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_ENUMS"><B>CONSIDER_ENUMS</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A>
<DD>Search scope constant indicating that enums should be considered.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_EXTERNAL_JARS"><B>CONSIDER_EXTERNAL_JARS</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A>
<DD>Search scope constant (bit mask) indicating that external JARs should be considered.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_INTERFACES"><B>CONSIDER_INTERFACES</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A>
<DD>Search scope constant indicating that interfaces should be considered.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html#CONSIDER_REQUIRED_PROJECTS"><B>CONSIDER_REQUIRED_PROJECTS</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/IJavaScriptElementSearchConstants.html" title="interface in org.eclipse.wst.jsdt.ui">IJavaScriptElementSearchConstants</A>
<DD>Search scope constant (bit mask) indicating that required projects should be considered.
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html#CONSTANTS"><B>CONSTANTS</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsDataTypes.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">JsDataTypes</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html#CONSTRUCTOR"><B>CONSTRUCTOR</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/IJavaScriptSearchConstants.html" title="interface in org.eclipse.wst.jsdt.core.search">IJavaScriptSearchConstants</A>
<DD>The searched element is a constructor.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html#CONSTRUCTOR"><B>CONSTRUCTOR</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementImageDescriptor.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementImageDescriptor</A>
<DD>Flag to render the 'constructor' adornment.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#CONSTRUCTOR_DECLARATION"><B>CONSTRUCTOR_DECLARATION</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#CONSTRUCTOR_INVOCATION"><B>CONSTRUCTOR_INVOCATION</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A>
<DD>Node type constant indicating a node of type
 <code>ConstructorInvocation</code>.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html#CONSTRUCTOR_PROPERTY"><B>CONSTRUCTOR_PROPERTY</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/FunctionDeclaration.html" title="class in org.eclipse.wst.jsdt.core.dom">FunctionDeclaration</A>
<DD>The "constructor" structural property of this node type.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ConstructorInvocation.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ConstructorInvocation</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Alternate constructor invocation statement AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ConstructorRelated"><B>ConstructorRelated</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#ConstructorVarargsArgumentNeedCast"><B>ConstructorVarargsArgumentNeedCast</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/internal/core/index/Index.html#containerPath"><B>containerPath</B></A> - 
Variable in class org.eclipse.wst.jsdt.internal.core.index.<A HREF="../org/eclipse/wst/jsdt/internal/core/index/Index.html" title="class in org.eclipse.wst.jsdt.internal.core.index">Index</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/internal/core/index/Index.html#containerRelativePath(java.lang.String)"><B>containerRelativePath(String)</B></A> - 
Method in class org.eclipse.wst.jsdt.internal.core.index.<A HREF="../org/eclipse/wst/jsdt/internal/core/index/Index.html" title="class in org.eclipse.wst.jsdt.internal.core.index">Index</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.html#containerSuperTypes()"><B>containerSuperTypes()</B></A> - 
Method in class org.eclipse.wst.jsdt.core.compiler.libraries.<A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/FireFoxLibInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">FireFoxLibInitializer</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.html#containerSuperTypes()"><B>containerSuperTypes()</B></A> - 
Method in class org.eclipse.wst.jsdt.core.compiler.libraries.<A HREF="../org/eclipse/wst/jsdt/core/compiler/libraries/InternetExplorerLibInitializer.html" title="class in org.eclipse.wst.jsdt.core.compiler.libraries">InternetExplorerLibInitializer</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainerInitializer.html#containerSuperTypes()"><B>containerSuperTypes()</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJsGlobalScopeContainerInitializer.html" title="interface in org.eclipse.wst.jsdt.core">IJsGlobalScopeContainerInitializer</A>
<DD>returns a String of all SuperTypes provided by this library.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html#containerSuperTypes()"><B>containerSuperTypes()</B></A> - 
Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.core">JsGlobalScopeContainerInitializer</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryJsGlobalScopeContainerInitializer.html#containerSuperTypes()"><B>containerSuperTypes()</B></A> - 
Method in class org.eclipse.wst.jsdt.libraries.<A HREF="../org/eclipse/wst/jsdt/libraries/BasicBrowserLibraryJsGlobalScopeContainerInitializer.html" title="class in org.eclipse.wst.jsdt.libraries">BasicBrowserLibraryJsGlobalScopeContainerInitializer</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#contains(char, char[][])"><B>contains(char, char[][])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers true if the array contains an occurrence of character, false otherwise.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#contains(char, char[])"><B>contains(char, char[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers true if the array contains an occurrence of character, false otherwise.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html#contains(char[], char[])"><B>contains(char[], char[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/CharOperation.html" title="class in org.eclipse.wst.jsdt.core.compiler">CharOperation</A>
<DD>Answers true if the array contains an occurrence of one of the characters, false otherwise.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModel.html#contains(IResource)"><B>contains(IResource)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModel.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModel</A>
<DD>Returns whether this JavaScript model contains an <code>IJavaScriptElement</code> whose
 resource is the given resource or a non-JavaScript resource which is the given resource.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IRegion.html#contains(org.eclipse.wst.jsdt.core.IJavaScriptElement)"><B>contains(IJavaScriptElement)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IRegion.html" title="interface in org.eclipse.wst.jsdt.core">IRegion</A>
<DD>Returns whether the given element is contained in this region.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ITypeHierarchy.html#contains(org.eclipse.wst.jsdt.core.IType)"><B>contains(IType)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ITypeHierarchy.html" title="interface in org.eclipse.wst.jsdt.core">ITypeHierarchy</A>
<DD>Returns whether the given type is part of this hierarchy.
<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JsJfaceNode.html#contains(int)"><B>contains(int)</B></A> - 
Method in class org.eclipse.wst.jsdt.web.ui.views.contentoutline.<A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JsJfaceNode.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline">JsJfaceNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html#containsAttribute(java.lang.String[])"><B>containsAttribute(String[])</B></A> - 
Method in class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/NodeHelper.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">NodeHelper</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragment.html#containsJavaResources()"><B>containsJavaResources()</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragment.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragment</A>
<DD>Returns whether this fragment contains at least one JavaScript resource.
<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html#containsMethod(org.eclipse.wst.jsdt.core.ast.IAbstractFunctionDeclaration)"><B>containsMethod(IAbstractFunctionDeclaration)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferredType.html" title="class in org.eclipse.wst.jsdt.core.infer">InferredType</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html#CONTENT_ASSIST"><B>CONTENT_ASSIST</B></A> - 
Static variable in class org.eclipse.wst.jsdt.web.ui.<A HREF="../org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html" title="class in org.eclipse.wst.jsdt.web.ui">StructuredTextViewerConfigurationJSDT.externalTypeExtension</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html#CONTENT_FORMATER"><B>CONTENT_FORMATER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.web.ui.<A HREF="../org/eclipse/wst/jsdt/web/ui/StructuredTextViewerConfigurationJSDT.externalTypeExtension.html" title="class in org.eclipse.wst.jsdt.web.ui">StructuredTextViewerConfigurationJSDT.externalTypeExtension</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java"><B>ContentAssistInvocationContext</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/ui/text/java/package-summary.html">org.eclipse.wst.jsdt.ui.text.java</A><DD>Describes the context of an invocation of content assist in a text viewer.<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html#ContentAssistInvocationContext(ITextViewer)"><B>ContentAssistInvocationContext(ITextViewer)</B></A> - 
Constructor for class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java">ContentAssistInvocationContext</A>
<DD>Equivalent to
 <A HREF="../org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html#ContentAssistInvocationContext(ITextViewer, int)">ContentAssistInvocationContext(viewer, viewer.getSelectedRange().x)</A>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html#ContentAssistInvocationContext(ITextViewer, int)"><B>ContentAssistInvocationContext(ITextViewer, int)</B></A> - 
Constructor for class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/ContentAssistInvocationContext.html" title="class in org.eclipse.wst.jsdt.ui.text.java">ContentAssistInvocationContext</A>
<DD>Creates a new context for the given viewer and offset.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html#CONTINUE_STATEMENT"><B>CONTINUE_STATEMENT</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.ast.<A HREF="../org/eclipse/wst/jsdt/core/ast/IASTNode.html" title="interface in org.eclipse.wst.jsdt.core.ast">IASTNode</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#CONTINUE_STATEMENT"><B>CONTINUE_STATEMENT</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A>
<DD>Node type constant indicating a node of type
 <code>ContinueStatement</code>.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ContinueStatement.html" title="class in org.eclipse.wst.jsdt.core.dom"><B>ContinueStatement</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/dom/package-summary.html">org.eclipse.wst.jsdt.core.dom</A><DD>Continue statement AST node type.<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#CONVERT_ANONYMOUS"><B>CONVERT_ANONYMOUS</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.refactoring.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html" title="interface in org.eclipse.wst.jsdt.core.refactoring">IJavaScriptRefactorings</A>
<DD>Refactoring id of the 'Convert Anonymous To Nested' refactoring (value:
 <code>org.eclipse.wst.jsdt.ui.convert.anonymous</code>).
<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#CONVERT_LOCAL_VARIABLE"><B>CONVERT_LOCAL_VARIABLE</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.refactoring.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html" title="interface in org.eclipse.wst.jsdt.core.refactoring">IJavaScriptRefactorings</A>
<DD>Refactoring id of the 'Convert Local Variable to Field' refactoring
 (value: <code>org.eclipse.wst.jsdt.ui.promote.temp</code>).
<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#CONVERT_MEMBER_TYPE"><B>CONVERT_MEMBER_TYPE</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.refactoring.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html" title="interface in org.eclipse.wst.jsdt.core.refactoring">IJavaScriptRefactorings</A>
<DD>Refactoring id of the 'Convert Member Type to Top Level' refactoring
 (value: <code>org.eclipse.wst.jsdt.ui.move.inner</code>).
<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertAnonymousDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><B>ConvertAnonymousDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html">org.eclipse.wst.jsdt.core.refactoring.descriptors</A><DD>Refactoring descriptor for the convert anonymous to nested refactoring.<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertAnonymousDescriptor.html#ConvertAnonymousDescriptor()"><B>ConvertAnonymousDescriptor()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertAnonymousDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ConvertAnonymousDescriptor</A>
<DD>Creates a new refactoring descriptor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#convertCompilationUnit(int, org.eclipse.wst.jsdt.internal.compiler.ast.CompilationUnitDeclaration, char[], java.util.Map, boolean, org.eclipse.wst.jsdt.internal.core.CompilationUnit, int, IProgressMonitor)"><B>convertCompilationUnit(int, CompilationUnitDeclaration, char[], Map, boolean, CompilationUnit, int, IProgressMonitor)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html" title="class in org.eclipse.wst.jsdt.core.dom">AST</A>
<DD>Internal method.
<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertLocalVariableDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><B>ConvertLocalVariableDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html">org.eclipse.wst.jsdt.core.refactoring.descriptors</A><DD>Refactoring descriptor for the convert local variable refactoring.<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertLocalVariableDescriptor.html#ConvertLocalVariableDescriptor()"><B>ConvertLocalVariableDescriptor()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertLocalVariableDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ConvertLocalVariableDescriptor</A>
<DD>Creates a new refactoring descriptor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertMemberTypeDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><B>ConvertMemberTypeDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html">org.eclipse.wst.jsdt.core.refactoring.descriptors</A><DD>Refactoring descriptor for the convert member type refactoring.<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertMemberTypeDescriptor.html#ConvertMemberTypeDescriptor()"><B>ConvertMemberTypeDescriptor()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/ConvertMemberTypeDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">ConvertMemberTypeDescriptor</A>
<DD>Creates a new refactoring descriptor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModel.html#copy(org.eclipse.wst.jsdt.core.IJavaScriptElement[], org.eclipse.wst.jsdt.core.IJavaScriptElement[], org.eclipse.wst.jsdt.core.IJavaScriptElement[], java.lang.String[], boolean, IProgressMonitor)"><B>copy(IJavaScriptElement[], IJavaScriptElement[], IJavaScriptElement[], String[], boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModel.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModel</A>
<DD>Copies the given elements to the specified container(s).
<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#copy(IPath, int, int, org.eclipse.wst.jsdt.core.IIncludePathEntry, IProgressMonitor)"><B>copy(IPath, int, int, IIncludePathEntry, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragmentRoot</A>
<DD>Copies the resource of this package fragment root to the destination path
 as specified by <code>IResource.copy(IPath, int, IProgressMonitor)</code>
 but excluding nested source folders.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ISourceManipulation.html#copy(org.eclipse.wst.jsdt.core.IJavaScriptElement, org.eclipse.wst.jsdt.core.IJavaScriptElement, java.lang.String, boolean, IProgressMonitor)"><B>copy(IJavaScriptElement, IJavaScriptElement, String, boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ISourceManipulation.html" title="interface in org.eclipse.wst.jsdt.core">ISourceManipulation</A>
<DD>Copies this element to the given container.
<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html#COPY"><B>COPY</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.refactoring.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/IJavaScriptRefactorings.html" title="interface in org.eclipse.wst.jsdt.core.refactoring">IJavaScriptRefactorings</A>
<DD>Refactoring id of the 'Copy' refactoring (value:
 <code>org.eclipse.wst.jsdt.ui.copy</code>).
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#COPY"><B>COPY</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapterFactory.html#copy()"><B>copy()</B></A> - 
Method in class org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/JsTranslationAdapterFactory.html" title="class in org.eclipse.wst.jsdt.web.core.javascript">JsTranslationAdapterFactory</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterFactoryForJSDT.html#copy()"><B>copy()</B></A> - 
Method in class org.eclipse.wst.jsdt.web.ui.views.contentoutline.<A HREF="../org/eclipse/wst/jsdt/web/ui/views/contentoutline/JFaceNodeAdapterFactoryForJSDT.html" title="class in org.eclipse.wst.jsdt.web.ui.views.contentoutline">JFaceNodeAdapterFactoryForJSDT</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/IRefactoringProcessorIds.html#COPY_PROCESSOR"><B>COPY_PROCESSOR</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/IRefactoringProcessorIds.html" title="interface in org.eclipse.wst.jsdt.ui.refactoring">IRefactoringProcessorIds</A>
<DD>Processor ID of the copy processor (value <code>"org.eclipse.wst.jsdt.ui.CopyProcessor"</code>).
<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/CopyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><B>CopyDescriptor</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/package-summary.html">org.eclipse.wst.jsdt.core.refactoring.descriptors</A><DD>Refactoring descriptor for the copy refactoring.<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/CopyDescriptor.html#CopyDescriptor()"><B>CopyDescriptor()</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/CopyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">CopyDescriptor</A>
<DD>Creates a new refactoring descriptor.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#copySubtree(org.eclipse.wst.jsdt.core.dom.AST, org.eclipse.wst.jsdt.core.dom.ASTNode)"><B>copySubtree(AST, ASTNode)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A>
<DD>Returns a deep copy of the subtree of AST nodes rooted at the
 given node.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html#copySubtrees(org.eclipse.wst.jsdt.core.dom.AST, java.util.List)"><B>copySubtrees(AST, List)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTNode</A>
<DD>Returns a deep copy of the subtrees of AST nodes rooted at the
 given list of nodes.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_CIRCULAR_CLASSPATH"><B>CORE_CIRCULAR_CLASSPATH</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_ENABLE_CLASSPATH_EXCLUSION_PATTERNS"><B>CORE_ENABLE_CLASSPATH_EXCLUSION_PATTERNS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_ENABLE_CLASSPATH_MULTIPLE_OUTPUT_LOCATIONS"><B>CORE_ENABLE_CLASSPATH_MULTIPLE_OUTPUT_LOCATIONS</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_ENCODING"><B>CORE_ENCODING</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#CORE_EXCEPTION"><B>CORE_EXCEPTION</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
<DD>Status constant indicating a core exception occurred.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_INCOMPATIBLE_JDK_LEVEL"><B>CORE_INCOMPATIBLE_JDK_LEVEL</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_INCOMPLETE_CLASSPATH"><B>CORE_INCOMPLETE_CLASSPATH</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_CLEAN_OUTPUT_FOLDER"><B>CORE_JAVA_BUILD_CLEAN_OUTPUT_FOLDER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_DUPLICATE_RESOURCE"><B>CORE_JAVA_BUILD_DUPLICATE_RESOURCE</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_INVALID_CLASSPATH"><B>CORE_JAVA_BUILD_INVALID_CLASSPATH</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_ORDER"><B>CORE_JAVA_BUILD_ORDER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_RECREATE_MODIFIED_CLASS_FILES_IN_OUTPUT_FOLDER"><B>CORE_JAVA_BUILD_RECREATE_MODIFIED_CLASS_FILES_IN_OUTPUT_FOLDER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#CORE_JAVA_BUILD_RESOURCE_COPY_FILTER"><B>CORE_JAVA_BUILD_RESOURCE_COPY_FILTER</B></A> - 
Static variable in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Possible  configurable option ID.
<DT><A HREF="../org/eclipse/wst/jsdt/core/CorrectionEngine.html" title="class in org.eclipse.wst.jsdt.core"><B>CorrectionEngine</B></A> - Class in <A HREF="../org/eclipse/wst/jsdt/core/package-summary.html">org.eclipse.wst.jsdt.core</A><DD>This class is the entry point for source corrections.<DT><A HREF="../org/eclipse/wst/jsdt/core/CorrectionEngine.html#CorrectionEngine(java.util.Map)"><B>CorrectionEngine(Map)</B></A> - 
Constructor for class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CorrectionEngine.html" title="class in org.eclipse.wst.jsdt.core">CorrectionEngine</A>
<DD>The CorrectionEngine is responsible for computing problem corrections.
<DT><A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html#CorruptedSignature"><B>CorruptedSignature</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.compiler.<A HREF="../org/eclipse/wst/jsdt/core/compiler/IProblem.html" title="interface in org.eclipse.wst.jsdt.core.compiler">IProblem</A>
<DD>Corrupted binaries
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#CP_CONTAINER_PATH_UNBOUND"><B>CP_CONTAINER_PATH_UNBOUND</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
<DD>Status constant indicating that a container path was not resolvable
 indicating either the referred container is undefined, unbound.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html#CP_VARIABLE_PATH_UNBOUND"><B>CP_VARIABLE_PATH_UNBOUND</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelStatusConstants.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelStatusConstants</A>
<DD>Status constant indicating that a variable path was not resolvable
 indicating either the referred variable is undefined, unbound or the resolved
 variable path does not correspond to an existing file or folder.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html#CPE_CONTAINER"><B>CPE_CONTAINER</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html" title="interface in org.eclipse.wst.jsdt.core">IIncludePathEntry</A>
<DD>Entry kind constant describing a includepath entry representing
 a name includepath container.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html#CPE_LIBRARY"><B>CPE_LIBRARY</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html" title="interface in org.eclipse.wst.jsdt.core">IIncludePathEntry</A>
<DD>Entry kind constant describing a includepath entry identifying a
 library.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html#CPE_PROJECT"><B>CPE_PROJECT</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html" title="interface in org.eclipse.wst.jsdt.core">IIncludePathEntry</A>
<DD>Entry kind constant describing a includepath entry identifying a
 required project.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html#CPE_SOURCE"><B>CPE_SOURCE</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html" title="interface in org.eclipse.wst.jsdt.core">IIncludePathEntry</A>
<DD>Entry kind constant describing a includepath entry identifying a
 folder containing package fragments with source code
 to be validated.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html#CPE_VARIABLE"><B>CPE_VARIABLE</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IIncludePathEntry.html" title="interface in org.eclipse.wst.jsdt.core">IIncludePathEntry</A>
<DD>Entry kind constant describing a includepath entry defined using
 a path that begins with a includepath variable reference.
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CRARR"><B>CRARR</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html#create(int, int)"><B>create(int, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/CompletionProposal.html" title="class in org.eclipse.wst.jsdt.core">CompletionProposal</A>
<DD>Creates a basic completion proposal.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html#create(org.eclipse.wst.jsdt.core.dom.AST)"><B>create(AST)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ASTRewrite</A>
<DD>Creates a new instance for describing manipulations of
 the given AST.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#create(org.eclipse.wst.jsdt.core.IJavaScriptUnit, boolean)"><B>create(IJavaScriptUnit, boolean)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
<DD>Creates a <A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite"><CODE>ImportRewrite</CODE></A> from a <A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>IJavaScriptUnit</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#create(org.eclipse.wst.jsdt.core.dom.JavaScriptUnit, boolean)"><B>create(JavaScriptUnit, boolean)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ImportRewrite</A>
<DD>Creates a <A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite"><CODE>ImportRewrite</CODE></A> from a an AST (<A HREF="../org/eclipse/wst/jsdt/core/dom/JavaScriptUnit.html" title="class in org.eclipse.wst.jsdt.core.dom"><CODE>JavaScriptUnit</CODE></A>).
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#create(java.lang.String)"><B>create(String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Returns the JavaScript model element corresponding to the given handle identifier
 generated by <code>IJavaScriptElement.getHandleIdentifier()</code>, or
 <code>null</code> if unable to create the associated element.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#create(java.lang.String, org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><B>create(String, WorkingCopyOwner)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Returns the JavaScript model element corresponding to the given handle identifier
 generated by <code>IJavaScriptElement.getHandleIdentifier()</code>, or
 <code>null</code> if unable to create the associated element.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#create(IResource, org.eclipse.wst.jsdt.core.IJavaScriptProject)"><B>create(IResource, IJavaScriptProject)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Returns the JavaScript element corresponding to the given file, its project being the given
 project.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#create(org.eclipse.wst.jsdt.core.refactoring.descriptors.RenameJavaScriptElementDescriptor)"><B>create(RenameJavaScriptElementDescriptor)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
<DD>Creates a new rename support for the given
 <A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/RenameJavaScriptElementDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors"><CODE>RenameJavaScriptElementDescriptor</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#create(org.eclipse.wst.jsdt.core.IJavaScriptProject, java.lang.String, int)"><B>create(IJavaScriptProject, String, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
<DD>Creates a new rename support for the given <A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptProject.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>IJavaScriptProject</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#create(org.eclipse.wst.jsdt.core.IPackageFragmentRoot, java.lang.String)"><B>create(IPackageFragmentRoot, String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
<DD>Creates a new rename support for the given <A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>IPackageFragmentRoot</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#create(org.eclipse.wst.jsdt.core.IPackageFragment, java.lang.String, int)"><B>create(IPackageFragment, String, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
<DD>Creates a new rename support for the given <A HREF="../org/eclipse/wst/jsdt/core/IPackageFragment.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>IPackageFragment</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#create(org.eclipse.wst.jsdt.core.IJavaScriptUnit, java.lang.String, int)"><B>create(IJavaScriptUnit, String, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
<DD>Creates a new rename support for the given <A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>IJavaScriptUnit</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#create(org.eclipse.wst.jsdt.core.IType, java.lang.String, int)"><B>create(IType, String, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
<DD>Creates a new rename support for the given <A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>IType</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#create(org.eclipse.wst.jsdt.core.IFunction, java.lang.String, int)"><B>create(IFunction, String, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
<DD>Creates a new rename support for the given <A HREF="../org/eclipse/wst/jsdt/core/IFunction.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>IFunction</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#create(org.eclipse.wst.jsdt.core.IField, java.lang.String, int)"><B>create(IField, String, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
<DD>Creates a new rename support for the given <A HREF="../org/eclipse/wst/jsdt/core/IField.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>IField</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#create(org.eclipse.wst.jsdt.core.ITypeParameter, java.lang.String, int)"><B>create(ITypeParameter, String, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
<DD>Creates a new rename support for the given <A HREF="../org/eclipse/wst/jsdt/core/ITypeParameter.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>ITypeParameter</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html#create(org.eclipse.wst.jsdt.core.ILocalVariable, java.lang.String, int)"><B>create(ILocalVariable, String, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.refactoring.<A HREF="../org/eclipse/wst/jsdt/ui/refactoring/RenameSupport.html" title="class in org.eclipse.wst.jsdt.ui.refactoring">RenameSupport</A>
<DD>Creates a new rename support for the given <A HREF="../org/eclipse/wst/jsdt/core/ILocalVariable.html" title="interface in org.eclipse.wst.jsdt.core"><CODE>ILocalVariable</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html#createAlignmentValue(boolean, int, int)"><B>createAlignmentValue(boolean, int, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.formatter.<A HREF="../org/eclipse/wst/jsdt/core/formatter/DefaultCodeFormatterConstants.html" title="class in org.eclipse.wst.jsdt.core.formatter">DefaultCodeFormatterConstants</A>
<DD>Create a new alignment value according to the given values.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html#createAndPattern(org.eclipse.wst.jsdt.core.search.SearchPattern, org.eclipse.wst.jsdt.core.search.SearchPattern)"><B>createAndPattern(SearchPattern, SearchPattern)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html" title="class in org.eclipse.wst.jsdt.core.search">SearchPattern</A>
<DD>Returns a search pattern that combines the given two patterns into an
 "and" pattern.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html#createAnyType(org.eclipse.wst.jsdt.core.dom.AST)"><B>createAnyType(AST)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/PrimitiveType.html" title="class in org.eclipse.wst.jsdt.core.dom">PrimitiveType</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#createArraySignature(char[], int)"><B>createArraySignature(char[], int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Creates a new type signature with the given amount of array nesting added
 to the given type signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#createArraySignature(java.lang.String, int)"><B>createArraySignature(String, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Creates a new type signature with the given amount of array nesting added
 to the given type signature.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ITypeBinding.html#createArrayType(int)"><B>createArrayType(int)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ITypeBinding.html" title="interface in org.eclipse.wst.jsdt.core.dom">ITypeBinding</A>
<DD>Answer an array type binding using the receiver and the given dimension.
<DT><A HREF="../org/eclipse/wst/jsdt/core/BindingKey.html#createArrayTypeBindingKey(java.lang.String, int)"><B>createArrayTypeBindingKey(String, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/BindingKey.html" title="class in org.eclipse.wst.jsdt.core">BindingKey</A>
<DD>Creates a new array type binding key from the given type binding key and the given array dimension.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html#createAST(IProgressMonitor)"><B>createAST(IProgressMonitor)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTParser</A>
<DD>Creates an abstract syntax tree.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html#createASTs(org.eclipse.wst.jsdt.core.IJavaScriptUnit[], java.lang.String[], org.eclipse.wst.jsdt.core.dom.ASTRequestor, IProgressMonitor)"><B>createASTs(IJavaScriptUnit[], String[], ASTRequestor, IProgressMonitor)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTParser</A>
<DD>Creates ASTs for a batch of javaScript units.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html#createBindings(org.eclipse.wst.jsdt.core.IJavaScriptElement[], IProgressMonitor)"><B>createBindings(IJavaScriptElement[], IProgressMonitor)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTParser.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTParser</A>
<DD>Creates bindings for a batch of JavaScript elements.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ASTRequestor.html#createBindings(java.lang.String[])"><B>createBindings(String[])</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ASTRequestor.html" title="class in org.eclipse.wst.jsdt.core.dom">ASTRequestor</A>
<DD>Resolves bindings for the given binding keys.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IBufferFactory.html#createBuffer(org.eclipse.wst.jsdt.core.IOpenable)"><B>createBuffer(IOpenable)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IBufferFactory.html" title="interface in org.eclipse.wst.jsdt.core">IBufferFactory</A>
<DD><B>Deprecated.</B>&nbsp;Creates a buffer for the given owner.
<DT><A HREF="../org/eclipse/wst/jsdt/core/WorkingCopyOwner.html#createBuffer(org.eclipse.wst.jsdt.core.IJavaScriptUnit)"><B>createBuffer(IJavaScriptUnit)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/WorkingCopyOwner.html" title="class in org.eclipse.wst.jsdt.core">WorkingCopyOwner</A>
<DD>Creates a buffer for the given working copy.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#createCharArrayTypeSignature(char[], boolean)"><B>createCharArrayTypeSignature(char[], boolean)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Creates a new type signature from the given type name encoded as a character
 array.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#createClassFileFrom(IFile)"><B>createClassFileFrom(IFile)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html#createCodeFormatter(java.util.Map)"><B>createCodeFormatter(Map)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html" title="class in org.eclipse.wst.jsdt.core">ToolFactory</A>
<DD>Create an instance of the built-in code formatter.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html#createCodeFormatter(java.util.Map, int)"><B>createCodeFormatter(Map, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html" title="class in org.eclipse.wst.jsdt.core">ToolFactory</A>
<DD>Create an instance of the built-in code formatter.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragment.html#createCompilationUnit(java.lang.String, java.lang.String, boolean, IProgressMonitor)"><B>createCompilationUnit(String, String, boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragment.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragment</A>
<DD>Creates and returns a javaScript unit in this package fragment
 with the specified name and contents.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#createCompilationUnitFrom(IFile)"><B>createCompilationUnitFrom(IFile)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>Creates and returns a javaScript unit element for
 the given source file (i.e. a file with one of the <A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#getJavaScriptLikeExtensions()"><CODE>JavaScript-like extensions</CODE></A>).
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingPreferenceBlock.html#createControl(Composite)"><B>createControl(Composite)</B></A> - 
Method in interface org.eclipse.wst.jsdt.ui.text.folding.<A HREF="../org/eclipse/wst/jsdt/ui/text/folding/IJavaFoldingPreferenceBlock.html" title="interface in org.eclipse.wst.jsdt.ui.text.folding">IJavaFoldingPreferenceBlock</A>
<DD>Creates the control that will be displayed on the JavaScript &gt; Editor &gt; Folding
 preference page.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/BaseLibraryWizardPage.html#createControl(Composite)"><B>createControl(Composite)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/BaseLibraryWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">BaseLibraryWizardPage</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html#createControl(Composite)"><B>createControl(Composite)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">JavaCapabilityConfigurationPage</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewClassWizardPage.html#createControl(Composite)"><B>createControl(Composite)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewClassWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewClassWizardPage</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewInterfaceWizardPage.html#createControl(Composite)"><B>createControl(Composite)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewInterfaceWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewInterfaceWizardPage</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewJavaProjectWizardPage.html#createControl(Composite)"><B>createControl(Composite)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewJavaProjectWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewJavaProjectWizardPage</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewPackageWizardPage.html#createControl(Composite)"><B>createControl(Composite)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewPackageWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewPackageWizardPage</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html#createCopyTarget(org.eclipse.wst.jsdt.core.dom.ASTNode)"><B>createCopyTarget(ASTNode)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ASTRewrite</A>
<DD>Creates and returns a placeholder node for a true copy of the given node.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ListRewrite.html#createCopyTarget(org.eclipse.wst.jsdt.core.dom.ASTNode, org.eclipse.wst.jsdt.core.dom.ASTNode)"><B>createCopyTarget(ASTNode, ASTNode)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ListRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ListRewrite</A>
<DD>Creates and returns a placeholder node for a true copy of a range of nodes of the
 current list.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html#createDocumentPartitioner()"><B>createDocumentPartitioner()</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.<A HREF="../org/eclipse/wst/jsdt/ui/text/JavaScriptTextTools.html" title="class in org.eclipse.wst.jsdt.ui.text">JavaScriptTextTools</A>
<DD>Factory method for creating a Java-specific document partitioner
 using this object's partitions scanner.
<DT><A HREF="../org/eclipse/wst/jsdt/core/infer/InferOptions.html#createEngine()"><B>createEngine()</B></A> - 
Method in class org.eclipse.wst.jsdt.core.infer.<A HREF="../org/eclipse/wst/jsdt/core/infer/InferOptions.html" title="class in org.eclipse.wst.jsdt.core.infer">InferOptions</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#createField(java.lang.String, org.eclipse.wst.jsdt.core.IJavaScriptElement, boolean, IProgressMonitor)"><B>createField(String, IJavaScriptElement, boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptUnit</A>
<DD>Creates and returns a var in this javaScript file with the
 given contents.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#createField(java.lang.String, org.eclipse.wst.jsdt.core.IJavaScriptElement, boolean, IProgressMonitor)"><B>createField(String, IJavaScriptElement, boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
<DD>Creates and returns a field in this type with the
 given contents.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html#createGroupNode(org.eclipse.wst.jsdt.core.dom.ASTNode[])"><B>createGroupNode(ASTNode[])</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ASTRewrite</A>
<DD>Creates and returns a node that represents a sequence of nodes.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html#createHierarchyScope(org.eclipse.wst.jsdt.core.IType)"><B>createHierarchyScope(IType)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html" title="class in org.eclipse.wst.jsdt.core.search">SearchEngine</A>
<DD>Returns a JavaScript search scope limited to the hierarchy of the given type.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html#createHierarchyScope(org.eclipse.wst.jsdt.core.IType, org.eclipse.wst.jsdt.core.WorkingCopyOwner)"><B>createHierarchyScope(IType, WorkingCopyOwner)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html" title="class in org.eclipse.wst.jsdt.core.search">SearchEngine</A>
<DD>Returns a JavaScript search scope limited to the hierarchy of the given type.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html#createImageDescriptor(org.eclipse.wst.jsdt.core.CompletionProposal)"><B>createImageDescriptor(CompletionProposal)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalLabelProvider</A>
<DD>Creates and returns a decorated image descriptor for a completion proposal.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#createImport(java.lang.String, org.eclipse.wst.jsdt.core.IJavaScriptElement, IProgressMonitor)"><B>createImport(String, IJavaScriptElement, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptUnit</A>
<DD>Creates and returns an non-static import declaration in this javaScript file
 with the given name.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#createImport(java.lang.String, org.eclipse.wst.jsdt.core.IJavaScriptElement, int, IProgressMonitor)"><B>createImport(String, IJavaScriptElement, int, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptUnit</A>
<DD>Creates and returns an import declaration in this javaScript file
 with the given name.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/CodeStyleConfiguration.html#createImportRewrite(org.eclipse.wst.jsdt.core.IJavaScriptUnit, boolean)"><B>createImportRewrite(IJavaScriptUnit, boolean)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/CodeStyleConfiguration.html" title="class in org.eclipse.wst.jsdt.ui">CodeStyleConfiguration</A>
<DD>Returns a <A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite"><CODE>ImportRewrite</CODE></A> using <A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#create(org.eclipse.wst.jsdt.core.IJavaScriptUnit, boolean)"><CODE>ImportRewrite.create(IJavaScriptUnit, boolean)</CODE></A> and
 configures the rewriter with the settings as specified in the JDT UI preferences.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/CodeStyleConfiguration.html#createImportRewrite(org.eclipse.wst.jsdt.core.dom.JavaScriptUnit, boolean)"><B>createImportRewrite(JavaScriptUnit, boolean)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/CodeStyleConfiguration.html" title="class in org.eclipse.wst.jsdt.ui">CodeStyleConfiguration</A>
<DD>Returns a <A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite"><CODE>ImportRewrite</CODE></A> using <A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ImportRewrite.html#create(org.eclipse.wst.jsdt.core.dom.JavaScriptUnit, boolean)"><CODE>ImportRewrite.create(JavaScriptUnit, boolean)</CODE></A> and
 configures the rewriter with the settings as specified in the JDT UI preferences.
<DT><A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html#createIndentationString(int)"><B>createIndentationString(int)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.formatter.<A HREF="../org/eclipse/wst/jsdt/core/formatter/CodeFormatter.html" title="class in org.eclipse.wst.jsdt.core.formatter">CodeFormatter</A>
<DD>Answers the string that corresponds to the indentation to the given indentation level or an empty string
 if the indentation cannot be computed.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#createInstance(java.lang.Class)"><B>createInstance(Class)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html" title="class in org.eclipse.wst.jsdt.core.dom">AST</A>
<DD>Creates an unparented node of the given node class
 (non-abstract subclass of <A HREF="../org/eclipse/wst/jsdt/core/dom/ASTNode.html" title="class in org.eclipse.wst.jsdt.core.dom"><CODE>ASTNode</CODE></A>).
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html#createInstance(int)"><B>createInstance(int)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/AST.html" title="class in org.eclipse.wst.jsdt.core.dom">AST</A>
<DD>Creates an unparented node of the given node type.
<DT><A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html#createJarPackageFragmentRootFrom(IFile)"><B>createJarPackageFragmentRootFrom(IFile)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/JavaScriptCore.html" title="class in org.eclipse.wst.jsdt.core">JavaScriptCore</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html#createJavaSearchScope(org.eclipse.wst.jsdt.core.IJavaScriptElement[])"><B>createJavaSearchScope(IJavaScriptElement[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html" title="class in org.eclipse.wst.jsdt.core.search">SearchEngine</A>
<DD>Returns a JavaScript search scope limited to the given JavaScript elements.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html#createJavaSearchScope(org.eclipse.wst.jsdt.core.IJavaScriptElement[], boolean)"><B>createJavaSearchScope(IJavaScriptElement[], boolean)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html" title="class in org.eclipse.wst.jsdt.core.search">SearchEngine</A>
<DD>Returns a JavaScript search scope limited to the given JavaScript elements.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html#createJavaSearchScope(org.eclipse.wst.jsdt.core.IJavaScriptElement[], int)"><B>createJavaSearchScope(IJavaScriptElement[], int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html" title="class in org.eclipse.wst.jsdt.core.search">SearchEngine</A>
<DD>Returns a JavaScript search scope limited to the given JavaScript elements.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html#createLabel(org.eclipse.wst.jsdt.core.CompletionProposal)"><B>createLabel(CompletionProposal)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalLabelProvider</A>
<DD>Creates the display label for a given <code>CompletionProposal</code>.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/search/IMatchPresentation.html#createLabelProvider()"><B>createLabelProvider()</B></A> - 
Method in interface org.eclipse.wst.jsdt.ui.search.<A HREF="../org/eclipse/wst/jsdt/ui/search/IMatchPresentation.html" title="interface in org.eclipse.wst.jsdt.ui.search">IMatchPresentation</A>
<DD>Creates a new instance of a label provider for elements that have been contributed
 to a search result by the corresponding query participant.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#createMethod(java.lang.String, org.eclipse.wst.jsdt.core.IJavaScriptElement, boolean, IProgressMonitor)"><B>createMethod(String, IJavaScriptElement, boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptUnit</A>
<DD>Creates and returns a function in this javaScript file with the
 given contents.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#createMethod(java.lang.String, org.eclipse.wst.jsdt.core.IJavaScriptElement, boolean, IProgressMonitor)"><B>createMethod(String, IJavaScriptElement, boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
<DD>Creates and returns a method or constructor in this type with the
 given contents.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#createMethodSignature(char[][], char[])"><B>createMethodSignature(char[][], char[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Creates a method signature from the given parameter and return type
 signatures.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#createMethodSignature(java.lang.String[], java.lang.String)"><B>createMethodSignature(String[], String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Creates a method signature from the given parameter and return type
 signatures.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html#createMoveTarget(org.eclipse.wst.jsdt.core.dom.ASTNode)"><B>createMoveTarget(ASTNode)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ASTRewrite</A>
<DD>Creates and returns a placeholder node for the new locations of the given node.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ListRewrite.html#createMoveTarget(org.eclipse.wst.jsdt.core.dom.ASTNode, org.eclipse.wst.jsdt.core.dom.ASTNode)"><B>createMoveTarget(ASTNode, ASTNode)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ListRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ListRewrite</A>
<DD>Creates and returns a placeholder node for a move of a range of nodes of the
 current list.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ListRewrite.html#createMoveTarget(org.eclipse.wst.jsdt.core.dom.ASTNode, org.eclipse.wst.jsdt.core.dom.ASTNode, org.eclipse.wst.jsdt.core.dom.ASTNode, TextEditGroup)"><B>createMoveTarget(ASTNode, ASTNode, ASTNode, TextEditGroup)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ListRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ListRewrite</A>
<DD>Creates and returns a placeholder node for a move of a range of nodes of the
 current list.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html#createOrPattern(org.eclipse.wst.jsdt.core.search.SearchPattern, org.eclipse.wst.jsdt.core.search.SearchPattern)"><B>createOrPattern(SearchPattern, SearchPattern)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html" title="class in org.eclipse.wst.jsdt.core.search">SearchPattern</A>
<DD>Returns a search pattern that combines the given two patterns into an
 "or" pattern.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewPackageWizardPage.html#createPackage(IProgressMonitor)"><B>createPackage(IProgressMonitor)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewPackageWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewPackageWizardPage</A>
<DD>Creates the new package using the entered field values.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#createPackageDeclaration(java.lang.String, IProgressMonitor)"><B>createPackageDeclaration(String, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptUnit</A>
<DD>Creates and returns a package declaration in this javaScript file
 with the given package name.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html#createPackageDialog(Shell, org.eclipse.wst.jsdt.core.IJavaScriptProject, int, java.lang.String)"><B>createPackageDialog(Shell, IJavaScriptProject, int, String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
<DD>Creates a selection dialog that lists all packages of the given JavaScript project.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html#createPackageDialog(Shell, IRunnableContext, org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope, boolean, boolean, java.lang.String)"><B>createPackageDialog(Shell, IRunnableContext, IJavaScriptSearchScope, boolean, boolean, String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
<DD>Creates a selection dialog that lists all packages of the given JavaScript search scope.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html#createPackageDialog(Shell, org.eclipse.wst.jsdt.core.IJavaScriptProject, int)"><B>createPackageDialog(Shell, IJavaScriptProject, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
<DD>Creates a selection dialog that lists all packages of the given JavaScript project.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html#createPackageDialog(Shell, org.eclipse.wst.jsdt.core.IPackageFragmentRoot, java.lang.String)"><B>createPackageDialog(Shell, IPackageFragmentRoot, String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
<DD>Creates a selection dialog that lists all packages under the given package 
 fragment root.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html#createPackageDialog(Shell, org.eclipse.wst.jsdt.core.IPackageFragmentRoot)"><B>createPackageDialog(Shell, IPackageFragmentRoot)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
<DD>Creates a selection dialog that lists all packages under the given package 
 fragment root.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html#createPackageFragment(java.lang.String, boolean, IProgressMonitor)"><B>createPackageFragment(String, boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IPackageFragmentRoot.html" title="interface in org.eclipse.wst.jsdt.core">IPackageFragmentRoot</A>
<DD>Creates and returns a package fragment in this root with the
 given dot-separated package name.
<DT><A HREF="../org/eclipse/wst/jsdt/core/BindingKey.html#createParameterizedTypeBindingKey(java.lang.String, java.lang.String[])"><B>createParameterizedTypeBindingKey(String, String[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/BindingKey.html" title="class in org.eclipse.wst.jsdt.core">BindingKey</A>
<DD>Creates a new parameterized type binding key from the given generic type binding key and the given argument type binding keys.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html#createParameterList(org.eclipse.wst.jsdt.core.CompletionProposal)"><B>createParameterList(CompletionProposal)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.text.java.<A HREF="../org/eclipse/wst/jsdt/ui/text/java/CompletionProposalLabelProvider.html" title="class in org.eclipse.wst.jsdt.ui.text.java">CompletionProposalLabelProvider</A>
<DD>Creates and returns a parameter list of the given method or type proposal
 suitable for display.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html#createPattern(java.lang.String, int, int, int)"><B>createPattern(String, int, int, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html" title="class in org.eclipse.wst.jsdt.core.search">SearchPattern</A>
<DD>Returns a search pattern based on a given string pattern.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html#createPattern(org.eclipse.wst.jsdt.core.IJavaScriptElement, int)"><B>createPattern(IJavaScriptElement, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html" title="class in org.eclipse.wst.jsdt.core.search">SearchPattern</A>
<DD>Returns a search pattern based on a given JavaScript element.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html#createPattern(org.eclipse.wst.jsdt.core.IJavaScriptElement, int, int)"><B>createPattern(IJavaScriptElement, int, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchPattern.html" title="class in org.eclipse.wst.jsdt.core.search">SearchPattern</A>
<DD>Returns a search pattern based on a given JavaScript element.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html#createProject(IProject, java.net.URI, IProgressMonitor)"><B>createProject(IProject, URI, IProgressMonitor)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/JavaCapabilityConfigurationPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">JavaCapabilityConfigurationPage</A>
<DD>Helper method to create and open a IProject.
<DT><A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html#createRefactoring(RefactoringStatus)"><B>createRefactoring(RefactoringStatus)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.refactoring.descriptors.<A HREF="../org/eclipse/wst/jsdt/core/refactoring/descriptors/JavaScriptRefactoringDescriptor.html" title="class in org.eclipse.wst.jsdt.core.refactoring.descriptors">JavaScriptRefactoringDescriptor</A>
<DD>
<DT><A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html#createScanner(boolean, boolean, boolean, boolean)"><B>createScanner(boolean, boolean, boolean, boolean)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html" title="class in org.eclipse.wst.jsdt.core">ToolFactory</A>
<DD>Create a scanner, indicating the level of detail requested for tokenizing.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html#createScanner(boolean, boolean, boolean, java.lang.String)"><B>createScanner(boolean, boolean, boolean, String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html" title="class in org.eclipse.wst.jsdt.core">ToolFactory</A>
<DD>Create a scanner, indicating the level of detail requested for tokenizing.
<DT><A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html#createScanner(boolean, boolean, boolean, java.lang.String, java.lang.String)"><B>createScanner(boolean, boolean, boolean, String, String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/ToolFactory.html" title="class in org.eclipse.wst.jsdt.core">ToolFactory</A>
<DD>Create a scanner, indicating the level of detail requested for tokenizing.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html#createStringPlaceholder(java.lang.String, int)"><B>createStringPlaceholder(String, int)</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.rewrite.<A HREF="../org/eclipse/wst/jsdt/core/dom/rewrite/ASTRewrite.html" title="class in org.eclipse.wst.jsdt.core.dom.rewrite">ASTRewrite</A>
<DD>Creates and returns a placeholder node for a source string that is to be inserted into
 the output document at the position corresponding to the placeholder.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html#createType(java.lang.String, org.eclipse.wst.jsdt.core.IJavaScriptElement, boolean, IProgressMonitor)"><B>createType(String, IJavaScriptElement, boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptUnit.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptUnit</A>
<DD>Creates and returns a type in this javaScript file with the
 given contents.
<DT><A HREF="../org/eclipse/wst/jsdt/core/IType.html#createType(java.lang.String, org.eclipse.wst.jsdt.core.IJavaScriptElement, boolean, IProgressMonitor)"><B>createType(String, IJavaScriptElement, boolean, IProgressMonitor)</B></A> - 
Method in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IType.html" title="interface in org.eclipse.wst.jsdt.core">IType</A>
<DD>Creates and returns a type in this type with the
 given contents.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html#createType(IProgressMonitor)"><B>createType(IProgressMonitor)</B></A> - 
Method in class org.eclipse.wst.jsdt.ui.wizards.<A HREF="../org/eclipse/wst/jsdt/ui/wizards/NewTypeWizardPage.html" title="class in org.eclipse.wst.jsdt.ui.wizards">NewTypeWizardPage</A>
<DD>Creates the new type using the entered field values.
<DT><A HREF="../org/eclipse/wst/jsdt/core/BindingKey.html#createTypeBindingKey(java.lang.String)"><B>createTypeBindingKey(String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/BindingKey.html" title="class in org.eclipse.wst.jsdt.core">BindingKey</A>
<DD>Creates a new type binding key from the given type name.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html#createTypeDialog(Shell, IRunnableContext, IProject, int, boolean)"><B>createTypeDialog(Shell, IRunnableContext, IProject, int, boolean)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
<DD>Creates a selection dialog that lists all types in the given project.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html#createTypeDialog(Shell, IRunnableContext, org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope, int, boolean, java.lang.String)"><B>createTypeDialog(Shell, IRunnableContext, IJavaScriptSearchScope, int, boolean, String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
<DD>Creates a selection dialog that lists all types in the given scope.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html#createTypeDialog(Shell, IRunnableContext, org.eclipse.wst.jsdt.core.search.IJavaScriptSearchScope, int, boolean, java.lang.String, org.eclipse.wst.jsdt.ui.dialogs.TypeSelectionExtension)"><B>createTypeDialog(Shell, IRunnableContext, IJavaScriptSearchScope, int, boolean, String, TypeSelectionExtension)</B></A> - 
Static method in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptUI.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptUI</A>
<DD>Creates a selection dialog that lists all types in the given scope.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html#createTypeNameMatch(org.eclipse.wst.jsdt.core.IType, int)"><B>createTypeNameMatch(IType, int)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html" title="class in org.eclipse.wst.jsdt.core.search">SearchEngine</A>
<DD>Create a type name match on a given type with specific modifiers.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#createTypeParameterSignature(char[], char[][])"><B>createTypeParameterSignature(char[], char[][])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Creates a new type parameter signature with the given name and bounds.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#createTypeParameterSignature(java.lang.String, java.lang.String[])"><B>createTypeParameterSignature(String, String[])</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Creates a new type parameter signature with the given name and bounds.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#createTypeSignature(char[], boolean)"><B>createTypeSignature(char[], boolean)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Creates a new type signature from the given type name encoded as a character
 array.
<DT><A HREF="../org/eclipse/wst/jsdt/core/Signature.html#createTypeSignature(java.lang.String, boolean)"><B>createTypeSignature(String, boolean)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/Signature.html" title="class in org.eclipse.wst.jsdt.core">Signature</A>
<DD>Creates a new type signature from the given type name.
<DT><A HREF="../org/eclipse/wst/jsdt/core/BindingKey.html#createTypeVariableBindingKey(java.lang.String, java.lang.String)"><B>createTypeVariableBindingKey(String, String)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/BindingKey.html" title="class in org.eclipse.wst.jsdt.core">BindingKey</A>
<DD>Creates a new type variable binding key from the given type variable name and the given declaring key.
<DT><A HREF="../org/eclipse/wst/jsdt/core/BindingKey.html#createWilcardTypeBindingKey(java.lang.String, char)"><B>createWilcardTypeBindingKey(String, char)</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/BindingKey.html" title="class in org.eclipse.wst.jsdt.core">BindingKey</A>
<DD>Creates a new wildcard type binding key from the given type binding key and the given wildcard kind
 (one of <A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_STAR"><CODE>Signature.C_STAR</CODE></A>, <A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_SUPER"><CODE>Signature.C_SUPER</CODE></A>, or <A HREF="../org/eclipse/wst/jsdt/core/Signature.html#C_EXTENDS"><CODE>Signature.C_EXTENDS</CODE></A>.
<DT><A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html#createWorkspaceScope()"><B>createWorkspaceScope()</B></A> - 
Static method in class org.eclipse.wst.jsdt.core.search.<A HREF="../org/eclipse/wst/jsdt/core/search/SearchEngine.html" title="class in org.eclipse.wst.jsdt.core.search">SearchEngine</A>
<DD>Returns a JavaScript search scope with the workspace as the only limit.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#CU_POST_QUALIFIED"><B>CU_POST_QUALIFIED</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
<DD>Compilation unit names are post  qualified.
<DT><A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html#CU_QUALIFIED"><B>CU_QUALIFIED</B></A> - 
Static variable in class org.eclipse.wst.jsdt.ui.<A HREF="../org/eclipse/wst/jsdt/ui/JavaScriptElementLabels.html" title="class in org.eclipse.wst.jsdt.ui">JavaScriptElementLabels</A>
<DD>Compilation unit names are fully qualified.
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CUP"><B>CUP</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html#CURREN"><B>CURREN</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.web.core.javascript.<A HREF="../org/eclipse/wst/jsdt/web/core/javascript/HTML40Namespace.EntityName.html" title="interface in org.eclipse.wst.jsdt.web.core.javascript">HTML40Namespace.EntityName</A>
<DD>&nbsp;
<DT><A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html#CYCLE_DETECTED"><B>CYCLE_DETECTED</B></A> - 
Static variable in interface org.eclipse.wst.jsdt.core.<A HREF="../org/eclipse/wst/jsdt/core/IJavaScriptModelMarker.html" title="interface in org.eclipse.wst.jsdt.core">IJavaScriptModelMarker</A>
<DD>Cycle detected marker attribute (value <code>"cycleDetected"</code>).
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ChildListPropertyDescriptor.html#cycleRisk()"><B>cycleRisk()</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ChildListPropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom">ChildListPropertyDescriptor</A>
<DD>Returns whether this property is vulnerable to cycles.
<DT><A HREF="../org/eclipse/wst/jsdt/core/dom/ChildPropertyDescriptor.html#cycleRisk()"><B>cycleRisk()</B></A> - 
Method in class org.eclipse.wst.jsdt.core.dom.<A HREF="../org/eclipse/wst/jsdt/core/dom/ChildPropertyDescriptor.html" title="class in org.eclipse.wst.jsdt.core.dom">ChildPropertyDescriptor</A>
<DD>Returns whether this property is vulnerable to cycles.
</DL>
<HR>


<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;<A HREF="index-2.html"><B>PREV LETTER</B></A>&nbsp;
&nbsp;<A HREF="index-4.html"><B>NEXT LETTER</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="../index.html?index-filesindex-3.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="index-3.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>


</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->

<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <A HREF="index-25.html">Y</A> <A HREF="index-26.html">Z</A> <HR>

</BODY>
</HTML>

Back to the top