Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0f5941fc323bba2a931ddabe0f4400783867ab34 (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
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:w="urn:schemas-microsoft-com:office:word"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=ProgId content=Word.Document>
<meta name=Generator content="Microsoft Word 10">
<meta name=Originator content="Microsoft Word 10">
<link rel=File-List href="prebuiltIndexes_files/filelist.xml">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<title>Building a PDOM for use with the CIndexProvider extension point</title>
<!--[if gte mso 9]><xml>
 <o:DocumentProperties>
  <o:Author>Administrator</o:Author>
  <o:LastAuthor>Administrator</o:LastAuthor>
  <o:Revision>7</o:Revision>
  <o:TotalTime>845</o:TotalTime>
  <o:LastPrinted>2007-04-16T17:28:00Z</o:LastPrinted>
  <o:Created>2007-08-20T16:06:00Z</o:Created>
  <o:LastSaved>2007-08-21T10:40:00Z</o:LastSaved>
  <o:Pages>1</o:Pages>
  <o:Words>1861</o:Words>
  <o:Characters>10610</o:Characters>
  <o:Company>Symbian Ltd.</o:Company>
  <o:Lines>88</o:Lines>
  <o:Paragraphs>24</o:Paragraphs>
  <o:CharactersWithSpaces>12447</o:CharactersWithSpaces>
  <o:Version>10.6830</o:Version>
 </o:DocumentProperties>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:SpellingState>Clean</w:SpellingState>
  <w:GrammarState>Clean</w:GrammarState>
  <w:Compatibility>
   <w:BreakWrappedTables/>
   <w:SnapToGridInCell/>
   <w:WrapTextWithPunct/>
   <w:UseAsianBreakRules/>
  </w:Compatibility>
  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
 </w:WordDocument>
</xml><![endif]-->
<style>
<!--
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
	{mso-style-parent:"";
	margin:0cm;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
h1
	{mso-style-link:"Heading 1 Char";
	mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0cm;
	margin-bottom:3.0pt;
	margin-left:0cm;
	mso-pagination:widow-orphan;
	page-break-after:avoid;
	mso-outline-level:1;
	font-size:16.0pt;
	font-family:Arial;
	mso-font-kerning:16.0pt;}
h2
	{mso-style-link:"Heading 2 Char";
	mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0cm;
	margin-bottom:3.0pt;
	margin-left:0cm;
	mso-pagination:widow-orphan;
	page-break-after:avoid;
	mso-outline-level:2;
	font-size:14.0pt;
	font-family:Arial;
	font-style:italic;}
h3
	{mso-style-next:Normal;
	margin-top:12.0pt;
	margin-right:0cm;
	margin-bottom:3.0pt;
	margin-left:0cm;
	mso-pagination:widow-orphan;
	page-break-after:avoid;
	mso-outline-level:3;
	font-size:13.0pt;
	font-family:Arial;}
p.MsoToc1, li.MsoToc1, div.MsoToc1
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:6.0pt;
	margin-right:0cm;
	margin-bottom:6.0pt;
	margin-left:0cm;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";
	text-transform:uppercase;
	font-weight:bold;}
p.MsoToc2, li.MsoToc2, div.MsoToc2
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:12.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";
	font-variant:small-caps;}
p.MsoToc3, li.MsoToc3, div.MsoToc3
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:24.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";
	font-style:italic;}
p.MsoToc4, li.MsoToc4, div.MsoToc4
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:36.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:9.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
p.MsoToc5, li.MsoToc5, div.MsoToc5
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:48.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:9.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
p.MsoToc6, li.MsoToc6, div.MsoToc6
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:60.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:9.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
p.MsoToc7, li.MsoToc7, div.MsoToc7
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:72.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:9.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
p.MsoToc8, li.MsoToc8, div.MsoToc8
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:84.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:9.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
p.MsoToc9, li.MsoToc9, div.MsoToc9
	{mso-style-update:auto;
	mso-style-noshow:yes;
	mso-style-next:Normal;
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:96.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:9.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
p.MsoNormalIndent, li.MsoNormalIndent, div.MsoNormalIndent
	{margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:36.0pt;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
p.MsoList2, li.MsoList2, div.MsoList2
	{margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:28.3pt;
	margin-bottom:.0001pt;
	text-indent:-14.15pt;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
p.MsoTitle, li.MsoTitle, div.MsoTitle
	{margin-top:12.0pt;
	margin-right:0cm;
	margin-bottom:3.0pt;
	margin-left:0cm;
	text-align:center;
	mso-pagination:widow-orphan;
	mso-outline-level:1;
	font-size:16.0pt;
	font-family:Arial;
	mso-fareast-font-family:"Times New Roman";
	mso-font-kerning:14.0pt;
	font-weight:bold;}
p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
	{margin-top:0cm;
	margin-right:0cm;
	margin-bottom:6.0pt;
	margin-left:0cm;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
p.MsoBodyTextIndent, li.MsoBodyTextIndent, div.MsoBodyTextIndent
	{margin-top:0cm;
	margin-right:0cm;
	margin-bottom:6.0pt;
	margin-left:14.15pt;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
a:link, span.MsoHyperlink
	{color:blue;
	text-decoration:underline;
	text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
	{color:#606420;
	text-decoration:underline;
	text-underline:single;}
pre
	{margin:0cm;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Courier New";
	mso-fareast-font-family:"Times New Roman";}
span.Heading1Char
	{mso-style-name:"Heading 1 Char";
	mso-style-link:"Heading 1";
	mso-ansi-font-size:16.0pt;
	mso-bidi-font-size:16.0pt;
	font-family:Arial;
	mso-ascii-font-family:Arial;
	mso-hansi-font-family:Arial;
	mso-bidi-font-family:Arial;
	mso-font-kerning:16.0pt;
	mso-ansi-language:EN-GB;
	mso-fareast-language:EN-GB;
	mso-bidi-language:AR-SA;
	font-weight:bold;}
span.Heading2Char
	{mso-style-name:"Heading 2 Char";
	mso-style-link:"Heading 2";
	mso-ansi-font-size:14.0pt;
	mso-bidi-font-size:14.0pt;
	font-family:Arial;
	mso-ascii-font-family:Arial;
	mso-hansi-font-family:Arial;
	mso-bidi-font-family:Arial;
	mso-ansi-language:EN-GB;
	mso-fareast-language:EN-GB;
	mso-bidi-language:AR-SA;
	font-weight:bold;
	font-style:italic;}
p.ReferenceLine, li.ReferenceLine, div.ReferenceLine
	{mso-style-name:"Reference Line";
	mso-style-parent:"Body Text";
	margin-top:0cm;
	margin-right:0cm;
	margin-bottom:6.0pt;
	margin-left:0cm;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
p.ShortReturnAddress, li.ShortReturnAddress, div.ShortReturnAddress
	{mso-style-name:"Short Return Address";
	margin:0cm;
	margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:12.0pt;
	font-family:"Times New Roman";
	mso-fareast-font-family:"Times New Roman";}
span.SpellE
	{mso-style-name:"";
	mso-spl-e:yes;}
span.GramE
	{mso-style-name:"";
	mso-gram-e:yes;}
@page Section1
	{size:612.0pt 792.0pt;
	margin:72.0pt 90.0pt 72.0pt 90.0pt;
	mso-header-margin:35.4pt;
	mso-footer-margin:35.4pt;
	mso-paper-source:0;}
div.Section1
	{page:Section1;}
 /* List Definitions */
 @list l0
	{mso-list-id:349184337;
	mso-list-type:hybrid;
	mso-list-template-ids:-1421170792 134807553 134807555 134807557 134807553 134807555 134807557 134807553 134807555 134807557;}
@list l0:level1
	{mso-level-start-at:0;
	mso-level-number-format:bullet;
	mso-level-text:\F0B7;
	mso-level-tab-stop:36.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;
	font-family:Symbol;
	mso-fareast-font-family:"Times New Roman";
	mso-bidi-font-family:"Times New Roman";}
@list l0:level2
	{mso-level-number-format:bullet;
	mso-level-text:o;
	mso-level-tab-stop:72.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;
	font-family:"Courier New";}
@list l0:level3
	{mso-level-tab-stop:108.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l0:level4
	{mso-level-tab-stop:144.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l0:level5
	{mso-level-tab-stop:180.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l0:level6
	{mso-level-tab-stop:216.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l0:level7
	{mso-level-tab-stop:252.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l0:level8
	{mso-level-tab-stop:288.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l0:level9
	{mso-level-tab-stop:324.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l1
	{mso-list-id:512257346;
	mso-list-type:hybrid;
	mso-list-template-ids:-1530771604 -15590566 134807577 134807579 134807567 134807577 134807579 134807567 134807577 134807579;}
@list l1:level1
	{mso-level-text:"\(%1\)";
	mso-level-tab-stop:54.0pt;
	mso-level-number-position:left;
	margin-left:54.0pt;
	text-indent:-18.0pt;}
@list l1:level2
	{mso-level-tab-stop:72.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l1:level3
	{mso-level-tab-stop:108.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l1:level4
	{mso-level-tab-stop:144.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l1:level5
	{mso-level-tab-stop:180.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l1:level6
	{mso-level-tab-stop:216.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l1:level7
	{mso-level-tab-stop:252.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l1:level8
	{mso-level-tab-stop:288.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l1:level9
	{mso-level-tab-stop:324.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l2
	{mso-list-id:1784763561;
	mso-list-type:hybrid;
	mso-list-template-ids:101777246 1465948790 134807577 134807579 134807567 134807577 134807579 134807567 134807577 134807579;}
@list l2:level1
	{mso-level-text:"\(%1\)";
	mso-level-tab-stop:54.0pt;
	mso-level-number-position:left;
	margin-left:54.0pt;
	text-indent:-18.0pt;}
@list l3
	{mso-list-id:1822429290;
	mso-list-type:hybrid;
	mso-list-template-ids:-673412320 134807569 134807577 134807579 134807567 134807577 134807579 134807567 134807577 134807579;}
@list l3:level1
	{mso-level-text:"%1\)";
	mso-level-tab-stop:36.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l3:level2
	{mso-level-tab-stop:72.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l3:level3
	{mso-level-tab-stop:108.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l3:level4
	{mso-level-tab-stop:144.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l3:level5
	{mso-level-tab-stop:180.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l3:level6
	{mso-level-tab-stop:216.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l3:level7
	{mso-level-tab-stop:252.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l3:level8
	{mso-level-tab-stop:288.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
@list l3:level9
	{mso-level-tab-stop:324.0pt;
	mso-level-number-position:left;
	text-indent:-18.0pt;}
ol
	{margin-bottom:0cm;}
ul
	{margin-bottom:0cm;}
-->
</style>
<!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-parent:"";
	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
	mso-para-margin:0cm;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";}
table.MsoTableGrid
	{mso-style-name:"Table Grid";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	border:solid windowtext 1.0pt;
	mso-border-alt:solid windowtext .5pt;
	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
	mso-border-insideh:.5pt solid windowtext;
	mso-border-insidev:.5pt solid windowtext;
	mso-para-margin:0cm;
	mso-para-margin-bottom:.0001pt;
	mso-pagination:widow-orphan;
	font-size:10.0pt;
	font-family:"Times New Roman";}
</style>
<![endif]--><!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="5122"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1"/>
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=EN-GB link=blue vlink="#606420" style='tab-interval:36.0pt'>

<div class=Section1>

<p class=MsoTitle><a name="_Toc164570181">Pre-built indexes in CDT 4.0</a></p>

<p class=MsoTitle style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'><b style='mso-bidi-font-weight:
normal'><span style='font-size:11.0pt'><o:p>&nbsp;</o:p></span></b></p>

<p class=MsoToc1 style='tab-stops:right dotted 431.5pt'><!--[if supportFields]><span
style='font-size:11.0pt;font-weight:normal;mso-bidi-font-weight:bold'><span
style='mso-element:field-begin'></span><span
style='mso-spacerun:yes'> </span>TOC \o &quot;1-3&quot; \h \z \u <span
style='mso-element:field-separator'></span></span><![endif]--><span
class=MsoHyperlink><span style='mso-no-proof:yes'><a href="#_Toc164570182">Overview<span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-tab-count:1 dotted'>... </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570182 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>1<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100380032000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;text-transform:none;font-weight:normal;mso-no-proof:
yes'><o:p></o:p></span></p>

<p class=MsoToc1 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='mso-no-proof:yes'><a href="#_Toc164570183">Export
of index content<span style='color:windowtext;display:none;mso-hide:screen;
text-decoration:none;text-underline:none'><span style='mso-tab-count:1 dotted'>.. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570183 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>1<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100380033000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;text-transform:none;font-weight:normal;mso-no-proof:
yes'><o:p></o:p></span></p>

<p class=MsoToc2 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='text-transform:uppercase;mso-no-proof:yes'><a
href="#_Toc164570184">IExportProjectProvider<span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-tab-count:1 dotted'>.. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570184 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>2<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100380034000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;mso-no-proof:yes'><o:p></o:p></span></p>

<p class=MsoToc2 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='text-transform:uppercase;mso-no-proof:yes'><a
href="#_Toc164570185">The GeneratePDOM Application<span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-tab-count:1 dotted'>.. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570185 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>4<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100380035000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;mso-no-proof:yes'><o:p></o:p></span></p>

<p class=MsoToc3 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='mso-no-proof:yes'><a href="#_Toc164570186">Common
command-line options<span style='color:windowtext;display:none;mso-hide:screen;
text-decoration:none;text-underline:none'><span style='mso-tab-count:1 dotted'>. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570186 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>4<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100380036000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;font-style:normal;mso-no-proof:yes'><o:p></o:p></span></p>

<p class=MsoToc3 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='mso-no-proof:yes'><a href="#_Toc164570187">ExternalExportProjectProvider
command-line options<span style='color:windowtext;display:none;mso-hide:screen;
text-decoration:none;text-underline:none'><span style='mso-tab-count:1 dotted'>. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570187 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>4<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100380037000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;font-style:normal;mso-no-proof:yes'><o:p></o:p></span></p>

<p class=MsoToc2 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='text-transform:uppercase;mso-no-proof:yes'><a
href="#_Toc164570188">Invoking the GeneratePDOM application<span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-tab-count:1 dotted'>.. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570188 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>5<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100380038000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;mso-no-proof:yes'><o:p></o:p></span></p>

<p class=MsoToc3 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='mso-no-proof:yes'><a href="#_Toc164570189">Invoking
as a self-hosted eclipse application<span style='color:windowtext;display:none;
mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-tab-count:1 dotted'>. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570189 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>5<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100380039000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;font-style:normal;mso-no-proof:yes'><o:p></o:p></span></p>

<p class=MsoToc3 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='mso-no-proof:yes'><a href="#_Toc164570190">Invoking
via the command-line<span style='color:windowtext;display:none;mso-hide:screen;
text-decoration:none;text-underline:none'><span style='mso-tab-count:1 dotted'>. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570190 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>6<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100390030000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;font-style:normal;mso-no-proof:yes'><o:p></o:p></span></p>

<p class=MsoToc3 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='mso-no-proof:yes'><a href="#_Toc164570191">Invoking
via an Ant script<span style='color:windowtext;display:none;mso-hide:screen;
text-decoration:none;text-underline:none'><span style='mso-tab-count:1 dotted'> </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570191 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>7<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100390031000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;font-style:normal;mso-no-proof:yes'><o:p></o:p></span></p>

<p class=MsoToc1 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='mso-no-proof:yes'><a href="#_Toc164570192">Import
of index content<span style='color:windowtext;display:none;mso-hide:screen;
text-decoration:none;text-underline:none'><span style='mso-tab-count:1 dotted'>.. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570192 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>8<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100390032000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;text-transform:none;font-weight:normal;mso-no-proof:
yes'><o:p></o:p></span></p>

<p class=MsoToc2 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='text-transform:uppercase;mso-no-proof:yes'><a
href="#_Toc164570193">IReadOnlyPDOMProvider<span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-tab-count:1 dotted'>.. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570193 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>8<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100390033000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;mso-no-proof:yes'><o:p></o:p></span></p>

<p class=MsoToc1 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='mso-no-proof:yes'><a href="#_Toc164570194">Appendix
B<span style='color:windowtext;display:none;mso-hide:screen;text-decoration:
none;text-underline:none'><span style='mso-tab-count:1 dotted'>.. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570194 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>11<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100390034000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;text-transform:none;font-weight:normal;mso-no-proof:
yes'><o:p></o:p></span></p>

<p class=MsoToc1 style='tab-stops:right dotted 431.5pt'><span
class=MsoHyperlink><span style='mso-no-proof:yes'><a href="#_Toc164570195">References<span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-tab-count:1 dotted'>.. </span></span><!--[if supportFields]><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'><span style='mso-element:field-begin'></span> PAGEREF
_Toc164570195 \h </span><span style='color:windowtext;text-decoration:none;
text-underline:none'><span style='display:none;mso-hide:screen'><span
style='mso-element:field-separator'></span></span></span><![endif]--><span
style='color:windowtext;display:none;mso-hide:screen;text-decoration:none;
text-underline:none'>12<!--[if gte mso 9]><xml>
 <w:data>08D0C9EA79F9BACE118C8200AA004BA90B02000000080000000E0000005F0054006F0063003100360034003500370030003100390035000000</w:data>
</xml><![endif]--></span><!--[if supportFields]><span style='color:windowtext;
display:none;mso-hide:screen;text-decoration:none;text-underline:none'><span
style='mso-element:field-end'></span></span><![endif]--></a></span></span><span
style='font-size:12.0pt;text-transform:none;font-weight:normal;mso-no-proof:
yes'><o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><!--[if supportFields]><b
style='mso-bidi-font-weight:normal'><span style='font-size:11.0pt'><span
style='mso-element:field-end'></span></span></b><![endif]--><b
style='mso-bidi-font-weight:normal'><span style='font-size:11.0pt'><o:p>&nbsp;</o:p></span></b></p>

<p class=MsoNormal style='text-align:justify'><b style='mso-bidi-font-weight:
normal'><span style='font-size:11.0pt'><o:p>&nbsp;</o:p></span></b></p>

<h1 style='text-align:justify'><a name="_Toc164570182">Overview</a></h1>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoBodyText style='text-align:justify'>This document describes two
extension points used for generating reusable index content, and for adding
this content into a CDT 4.0 based environment. The intended audience is ISVs
who are looking to build indexes of libraries or SDKs that are of interest to
them and their customers, and to integrate the pre-built index information into
their IDE environment. The extension points are intended to be general enough
to allow ISVs to support unforeseen pre-built index content scenarios, with a
set of default implementations intended to be useful for standard situations.
Other sources that may be helpful are the extension point descriptions, and the
central interfaces’ <span class=SpellE>javadoc</span>.</p>

<h1 style='text-align:justify'><a name="_Toc164570183">Export of index content</a></h1>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>Export is performed by indexing a
normal CDT project which has been setup and configured programmatically. A
top-level summary of the steps needed is:</p>

<p class=MsoList2 style='margin-left:54.0pt;text-align:justify;text-indent:
-18.0pt;mso-list:l1 level1 lfo2;tab-stops:list 54.0pt'><![if !supportLists]><span
style='mso-list:Ignore'>(1)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
</span></span><![endif]>Write a class that can setup your index content as a
CDT project, and register it against an extension point. For simple
libraries/SDKs the default implementation can be used. </p>

<p class=MsoList2 style='margin-left:54.0pt;text-align:justify;text-indent:
-18.0pt;mso-list:l1 level1 lfo2;tab-stops:list 54.0pt'><![if !supportLists]><span
style='mso-list:Ignore'>(2)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
</span></span><![endif]>Invoke the GeneratePDOM application from the command-line.
This involves invoking eclipse from an eclipse installation with the CDT 4.0
plug-ins, and the plug-in containing the project generation code from step (1)</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<h2 style='text-align:justify'><a name="_Toc164570184"><span style='font-style:
normal;mso-bidi-font-style:italic'>IExportProjectProvider</span></a><span
style='font-style:normal;mso-bidi-font-style:italic'><o:p></o:p></span></h2>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>It is expected that real-world
libraries and SDK’s may need complex configuration before indexing. For
example, per-file macro or include settings, or excluding certain files from
being indexed. In this case, it is necessary for the ISV to write code which
programmatically performs this configuration. If detailed configuration is not
needed then a default implementation of IExportProjectProvider may be
sufficient.</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>The call-back for project
creation must implement the following interface</p>

<p class=MsoBodyText style='text-align:justify;text-indent:36.0pt'><b
style='mso-bidi-font-weight:normal'>org.eclipse.cdt.core.index.export.IExportProjectProvider<o:p></o:p></b></p>

<p class=MsoBodyText style='text-align:justify;text-indent:36.0pt'><o:p>&nbsp;</o:p></p>

<p class=MsoBodyText style='text-align:justify'>The skeletal form of this
interface is shown below: </p>

<p class=MsoBodyText style='text-align:justify'><!--[if mso & !supportInlineShapes & supportFields]><span
style='mso-element:field-begin;mso-field-lock:yes'></span><span
style='mso-spacerun:yes'> </span>SHAPE <span
style='mso-spacerun:yes'> </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span><![endif]--><!--[if gte vml 1]><v:group
 id="_x0000_s1046" editas="canvas" style='width:6in;height:135pt;
 mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
 coordorigin="2520,3735" coordsize="7200,2314">
 <o:lock v:ext="edit" aspectratio="t"/>
 <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
  <v:stroke joinstyle="miter"/>
  <v:formulas>
   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
   <v:f eqn="sum @0 1 0"/>
   <v:f eqn="sum 0 0 @1"/>
   <v:f eqn="prod @2 1 2"/>
   <v:f eqn="prod @3 21600 pixelWidth"/>
   <v:f eqn="prod @3 21600 pixelHeight"/>
   <v:f eqn="sum @0 0 1"/>
   <v:f eqn="prod @6 1 2"/>
   <v:f eqn="prod @7 21600 pixelWidth"/>
   <v:f eqn="sum @8 21600 0"/>
   <v:f eqn="prod @7 21600 pixelHeight"/>
   <v:f eqn="sum @10 21600 0"/>
  </v:formulas>
  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
  <o:lock v:ext="edit" aspectratio="t"/>
 </v:shapetype><v:shape id="_x0000_s1045" type="#_x0000_t75" style='position:absolute;
  left:2520;top:3735;width:7200;height:2314' o:preferrelative="f">
  <v:fill o:detectmouseclick="t"/>
  <v:path o:extrusionok="t" o:connecttype="none"/>
 </v:shape><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
  path="m,l,21600r21600,l21600,xe">
  <v:stroke joinstyle="miter"/>
  <v:path gradientshapeok="t" o:connecttype="rect"/>
 </v:shapetype><v:shape id="_x0000_s1047" type="#_x0000_t202" style='position:absolute;
  left:2520;top:3735;width:7200;height:2314'>
  <v:textbox>
   <![if !mso]>
   <table cellpadding=0 cellspacing=0 width="100%">
    <tr>
     <td><![endif]>
     <div>
     <p class=MsoBodyText><span class=GramE>public</span> interface
     IExportProjectProvider {</p>
     <p class=MsoBodyText style='text-indent:36.0pt'><span class=GramE>public</span>
     void setApplicationArguments(String[] arguments);</p>
     <p class=MsoBodyText style='text-indent:36.0pt'><span class=GramE>public</span>
     ICProject createProject() throws CoreException;</p>
     <p class=MsoBodyText style='text-indent:36.0pt'><span class=GramE>public</span>
     IIndexLocationConverter getLocationConverter(ICProject cproject);</p>
     <p class=MsoBodyText style='text-indent:36.0pt'><span class=GramE>public</span>
     Map/*&lt;String,String&gt;*/ getExportProperties();<span style='mso-tab-count:
     1'>   </span></p>
     <p class=MsoBodyText>}</p>
     </div>
     <![if !mso]></td>
    </tr>
   </table>
   <![endif]></v:textbox>
 </v:shape><w:wrap type="none"/>
 <w:anchorlock/>
</v:group><![endif]--><![if !vml]><img width=582 height=186
src="prebuiltIndexes_files/image001.gif" v:shapes="_x0000_s1046 _x0000_s1045 _x0000_s1047"><![endif]><!--[if mso & !supportInlineShapes & supportFields]><v:shape
 id="_x0000_i1025" type="#_x0000_t75" style='width:6in;height:135pt'>
 <v:imagedata croptop="-65520f" cropbottom="65520f"/>
</v:shape><span style='mso-element:field-end'></span><![endif]--></p>

<p class=MsoBodyText style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoBodyText style='text-align:justify'>This interface allows any index
export application to delegate the entire setting up of the project content to
an ISV specific implementation. The interface javadoc describes each method in
more detail but a summary is:</p>

<p class=MsoBodyText style='margin-left:36.0pt;text-align:justify;text-indent:
-18.0pt;mso-list:l0 level1 lfo4;tab-stops:list 36.0pt'><![if !supportLists]><span
style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]>setApplicationArguments – this receives any
application arguments specified on the command-line. Its expected
implementations will simply store the arguments for later processing by
createProject.</p>

<p class=MsoBodyText style='margin-left:36.0pt;text-align:justify;text-indent:
-18.0pt;mso-list:l0 level1 lfo4;tab-stops:list 36.0pt'><![if !supportLists]><span
style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]>createProject – this is the key method which is
expected to create and configure a project representing the content to be
indexed</p>

<p class=MsoBodyText style='margin-left:36.0pt;text-align:justify;text-indent:
-18.0pt;mso-list:l0 level1 lfo4;tab-stops:list 36.0pt'><![if !supportLists]><span
style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]>getLocationConverter – this returns an
IIndexLocationConverter which converts IIndexFileLocation objects (which
represent file locations in the index) to an unspecified ISV determined
internal (String) format. For convenience, an implementation which converts an
IIndexFileLocation to an internal format relative path is provided</p>

<p class=MsoBodyText style='margin-left:72.0pt;text-align:justify;text-indent:
-18.0pt;mso-list:l0 level2 lfo4;tab-stops:list 72.0pt'><![if !supportLists]><span
style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]>org.eclipse.cdt.core.index.ResourceContainerRelativeLocationConverter</p>

<p class=MsoBodyText style='margin-left:36.0pt;text-align:justify;text-indent:
-18.0pt;mso-list:l0 level1 lfo4;tab-stops:list 36.0pt'><![if !supportLists]><span
style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span></span><![endif]>getExportProperties – this allows ISV’s to
associate String values with String keys within exported content. This is
mostly for debugging purposes as it is not exposed to the CDT user in the 4.0
release.</p>

<p class=MsoBodyText style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoBodyText style='text-align:justify'>A default implementation of
this interface, which is also intended to be sub-classed, is<span
style='mso-tab-count:1'>            </span><b style='mso-bidi-font-weight:normal'>org.eclipse.cdt.core.index.export.ExternalExportProjectProvider</b></p>

<p class=MsoBodyText style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoBodyText style='text-align:justify'>The project provider must be
registered as an extension to the <span class=SpellE>org.eclipse.cdt.core.CIndex</span>
extension point under the <span class=SpellE>ExportProjectProvider</span> child
element, in order that it is visible to the CDT core index generation code.</p>

<p class=MsoBodyText style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoBodyText style='text-align:justify'><!--[if mso & !supportInlineShapes & supportFields]><span
style='mso-element:field-begin;mso-field-lock:yes'></span><span
style='mso-spacerun:yes'> </span>SHAPE <span
style='mso-spacerun:yes'> </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span><![endif]--><!--[if gte vml 1]><v:group
 id="_x0000_s1052" editas="canvas" style='width:6in;height:252pt;
 mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
 coordorigin="2520,2422" coordsize="7200,4320">
 <o:lock v:ext="edit" aspectratio="t"/>
 <v:shape id="_x0000_s1051" type="#_x0000_t75" style='position:absolute;left:2520;
  top:2422;width:7200;height:4320' o:preferrelative="f">
  <v:fill o:detectmouseclick="t"/>
  <v:path o:extrusionok="t" o:connecttype="none"/>
 </v:shape><v:shape id="_x0000_s1053" type="#_x0000_t202" style='position:absolute;
  left:2520;top:2422;width:7200;height:4320'>
  <v:textbox>
   <![if !mso]>
   <table cellpadding=0 cellspacing=0 width="100%">
    <tr>
     <td><![endif]>
     <div>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'>&lt;<span class=SpellE><span class=GramE>plugin</span></span>&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>    </span>...<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>   </span>&lt;extension <o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>         </span><span
     class=GramE>point</span>=&quot;org.eclipse.cdt.core.CIndex&quot;&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>      </span>&lt;<span
     class=SpellE>ExportProjectProvider</span><o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>            </span><span
     class=GramE>class</span>=&quot;com.acme.sdk.SDKProjectProvider_2_0_1&quot;&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>      </span>&lt;/<span
     class=SpellE>ExportProjectProvider</span>&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>   </span>&lt;/extension&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>    </span>...<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'>&lt;/<span class=SpellE>plugin</span>&gt;<o:p></o:p></span></p>
     </div>
     <![if !mso]></td>
    </tr>
   </table>
   <![endif]></v:textbox>
 </v:shape><w:wrap type="none"/>
 <w:anchorlock/>
</v:group><![endif]--><![if !vml]><img width=582 height=342
src="prebuiltIndexes_files/image002.gif" v:shapes="_x0000_s1052 _x0000_s1051 _x0000_s1053"><![endif]><!--[if mso & !supportInlineShapes & supportFields]><v:shape
 id="_x0000_i1026" type="#_x0000_t75" style='width:6in;height:252pt'>
 <v:imagedata croptop="-65520f" cropbottom="65520f"/>
</v:shape><span style='mso-element:field-end'></span><![endif]--><br clear=all
style='mso-special-character:line-break;page-break-before:always'>
</p>

<h2 style='text-align:justify'><a name="_Toc164570185">The </a><span
class=SpellE><span style='mso-bookmark:_Toc164570185'>GeneratePDOM</span></span><span
style='mso-bookmark:_Toc164570185'> Application</span></h2>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoBodyText style='text-align:justify'>CDT 4.0 provides an eclipse
command-line application for generating the index. Its application ID is:</p>

<p class=MsoBodyTextIndent style='text-align:justify'><span class=SpellE>org.eclipse.cdt.core.GeneratePDOM</span></p>

<p class=MsoBodyTextIndent style='margin-left:0cm;text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoBodyText style='text-align:justify'><span style='font-size:11.0pt'>This
application can be invoked as any other eclipse command-line application, some
examples are provided later in this document.</span></p>

<h3 style='text-align:justify'><o:p>&nbsp;</o:p></h3>

<h3 style='text-align:justify'><a name="_Toc164570186">Common command-line
options</a></h3>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>Command-line options common to
all IExportProjectProvider implementations are:</p>

<p class=MsoBodyText style='text-align:justify'><o:p>&nbsp;</o:p></p>

<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0
 style='border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt;
 mso-yfti-tbllook:480;mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-border-insideh:
 .5pt solid windowtext;mso-border-insidev:.5pt solid windowtext'>
 <tr style='mso-yfti-irow:0'>
  <td width=197 valign=top style='width:147.6pt;border:solid windowtext 1.0pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoBodyText style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>-pprovider</span></p>
  </td>
  <td width=197 valign=top style='width:147.6pt;border:solid windowtext 1.0pt;
  border-left:none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:
  solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>The fully qualified <span class=SpellE>classname</span>
  of a class implementing interface IExportProjectProvider<o:p></o:p></span></p>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>Example:<o:p></o:p></span></p>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
  <p class=MsoBodyText style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>-pprovider <span class=SpellE>com.acme.sdk.AcmeExportProjectProvider</span></span></p>
  </td>
  <td width=197 valign=top style='width:147.6pt;border:solid windowtext 1.0pt;
  border-left:none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:
  solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoBodyText style='text-align:justify'>Optional. Defaults to the
  fully qualified class name of <span class=SpellE>ExternalExportProjectProvider</span></p>
  </td>
 </tr>
 <tr style='mso-yfti-irow:1'>
  <td width=197 valign=top style='width:147.6pt;border:solid windowtext 1.0pt;
  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>-target<o:p></o:p></span></p>
  </td>
  <td width=197 valign=top style='width:147.6pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoBodyText style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>An absolute or relative path of the resulting file</span></p>
  </td>
  <td width=197 valign=top style='width:147.6pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoBodyText style='text-align:justify'>Needed</p>
  </td>
 </tr>
 <tr style='mso-yfti-irow:2'>
  <td width=197 valign=top style='width:147.6pt;border:solid windowtext 1.0pt;
  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>-properties &lt;key=value&gt;<o:p></o:p></span></p>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>…<o:p></o:p></span></p>
  <p class=MsoBodyText style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>&lt;key=value&gt;</span></p>
  </td>
  <td width=197 valign=top style='width:147.6pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoBodyText style='text-align:justify'><o:p>&nbsp;</o:p></p>
  </td>
  <td width=197 valign=top style='width:147.6pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoBodyText style='text-align:justify'>Optional</p>
  </td>
 </tr>
 <tr style='mso-yfti-irow:3;mso-yfti-lastrow:yes'>
  <td width=197 valign=top style='width:147.6pt;border:solid windowtext 1.0pt;
  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoBodyText style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>-quiet</span></p>
  </td>
  <td width=197 valign=top style='width:147.6pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoBodyText style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>If present, problems, statistics and indexer
  activity will be suppressed.</span></p>
  </td>
  <td width=197 valign=top style='width:147.6pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoBodyText style='text-align:justify'>Optional</p>
  </td>
 </tr>
</table>

<p class=MsoBodyText style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoBodyText style='text-align:justify'>Other command-line options
depend on what the project provider specified in –pprovider.</p>

<h3 style='text-align:justify'><a name="_Toc164570187"></a><span class=SpellE><span
style='mso-bookmark:_Toc164570187'>ExternalExportProjectProvider</span></span><span
style='mso-bookmark:_Toc164570187'> command-line options</span></h3>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'><span class=SpellE>ExternalExportProjectProvider</span>
specific command-line options are:</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 width=583
 style='width:437.4pt;border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt;
 mso-yfti-tbllook:480;mso-padding-alt:0cm 5.4pt 0cm 5.4pt;mso-border-insideh:
 .5pt solid windowtext;mso-border-insidev:.5pt solid windowtext'>
 <tr style='mso-yfti-irow:0'>
  <td width=163 valign=top style='width:122.4pt;border:solid windowtext 1.0pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>-source<o:p></o:p></span></p>
  </td>
  <td width=264 valign=top style='width:198.0pt;border:solid windowtext 1.0pt;
  border-left:none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:
  solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>The absolute path of a directory to index.
  Everything under this directory will be indexed. <o:p></o:p></span></p>
  </td>
  <td width=156 valign=top style='width:117.0pt;border:solid windowtext 1.0pt;
  border-left:none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:
  solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>Needed<o:p></o:p></span></p>
  </td>
 </tr>
 <tr style='mso-yfti-irow:1'>
  <td width=163 valign=top style='width:122.4pt;border:solid windowtext 1.0pt;
  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>-include<o:p></o:p></span></p>
  </td>
  <td width=264 valign=top style='width:198.0pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>An absolute or relative path of a pre-include file<o:p></o:p></span></p>
  </td>
  <td width=156 valign=top style='width:117.0pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>Optional<o:p></o:p></span></p>
  </td>
 </tr>
 <tr style='mso-yfti-irow:2;mso-yfti-lastrow:yes'>
  <td width=163 valign=top style='width:122.4pt;border:solid windowtext 1.0pt;
  border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
  padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>- id<o:p></o:p></span></p>
  </td>
  <td width=264 valign=top style='width:198.0pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>A <span class=SpellE>namespaced</span> identifier
  identifying the indexed content<o:p></o:p></span></p>
  </td>
  <td width=156 valign=top style='width:117.0pt;border-top:none;border-left:
  none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;
  mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;
  mso-border-alt:solid windowtext .5pt;padding:0cm 5.4pt 0cm 5.4pt'>
  <p class=MsoNormal style='text-align:justify'><span style='font-size:8.0pt;
  font-family:"Courier New"'>Optional<o:p></o:p></span></p>
  </td>
 </tr>
</table>

<h3 style='text-align:justify'><o:p>&nbsp;</o:p></h3>

<span style='font-size:14.0pt;font-family:Arial;mso-fareast-font-family:"Times New Roman";
mso-ansi-language:EN-GB;mso-fareast-language:EN-GB;mso-bidi-language:AR-SA'><br
clear=all style='page-break-before:always'>
</span>

<h2 style='text-align:justify'><a name="_Toc164570188">Invoking the
GeneratePDOM application</a></h2>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>As an eclipse application, the
GeneratePDOM application can be invoked in the normal ways that any other
eclipse application can [1]. For initial development, <span class=GramE>its</span>
most convenient to invoke as a self-hosted eclipse application via a launch
configuration. For integrating into an automated build, either direct
command-line invocation or via an ant build is more convenient.</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<h3 style='text-align:justify'><a name="_Toc164570189">Invoking as a
self-hosted eclipse application</a></h3>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>Running as a self-hosted eclipse
application is straightforward. You will need to have the CDT 4.0 plug-ins
installed, or in your workspace. Then the steps are:</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='margin-left:36.0pt;text-align:justify;text-indent:
-18.0pt;mso-list:l3 level1 lfo6;tab-stops:list 36.0pt'><![if !supportLists]><span
style='mso-list:Ignore'>1)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span><![endif]>Create a new launch configuration of type “Eclipse
Application”</p>

<p class=MsoNormal style='margin-left:36.0pt;text-align:justify;text-indent:
-18.0pt;mso-list:l3 level1 lfo6;tab-stops:list 36.0pt'><![if !supportLists]><span
style='mso-list:Ignore'>2)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span><![endif]>Choose “Run an application” and select “<span
class=SpellE>org.eclipse.cdt.core.GeneratePDOM</span>”</p>

<p class=MsoNormal style='margin-left:36.0pt;text-align:justify;text-indent:
-18.0pt;mso-list:l3 level1 lfo6;tab-stops:list 36.0pt'><![if !supportLists]><span
style='mso-list:Ignore'>3)<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
</span></span><![endif]>Enter the Arguments to the application as detailed in
the previous sections</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'><!--[if gte vml 1]><v:shape id="_x0000_i1027"
 type="#_x0000_t75" style='width:431.25pt;height:321pt'>
 <v:imagedata src="prebuiltIndexes_files/image003.png" o:title=""/>
</v:shape><![endif]--><![if !vml]><img width=575 height=428
src="prebuiltIndexes_files/image004.jpg" v:shapes="_x0000_i1027"><![endif]></p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'><!--[if gte vml 1]><v:shape id="_x0000_i1028"
 type="#_x0000_t75" style='width:431.25pt;height:321pt'>
 <v:imagedata src="prebuiltIndexes_files/image005.png" o:title=""/>
</v:shape><![endif]--><![if !vml]><img width=575 height=428
src="prebuiltIndexes_files/image006.jpg" v:shapes="_x0000_i1028"><![endif]></p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<h3 style='text-align:justify'><a name="_Toc164570190">Invoking via the
command-line</a></h3>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>The PDOM generation application
can be invoked via the command-line. Since version 3.3, the Eclipse</p>

<p class=MsoNormal style='text-align:justify'><span class=GramE>distribution</span>
on Windows includes an “ecilpsec.exe” which is for launching eclipse as a
console application.</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'><!--[if mso & !supportInlineShapes & supportFields]><span
style='mso-element:field-begin;mso-field-lock:yes'></span><span
style='mso-spacerun:yes'> </span>SHAPE <span
style='mso-spacerun:yes'> </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span><![endif]--><!--[if gte vml 1]><v:group
 id="_x0000_s1043" editas="canvas" style='width:6in;height:205.5pt;
 mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
 coordorigin="2520,5160" coordsize="7200,3523">
 <o:lock v:ext="edit" aspectratio="t"/>
 <v:shape id="_x0000_s1042" type="#_x0000_t75" style='position:absolute;left:2520;
  top:5160;width:7200;height:3523' o:preferrelative="f">
  <v:fill o:detectmouseclick="t"/>
  <v:path o:extrusionok="t" o:connecttype="none"/>
 </v:shape><v:shape id="_x0000_s1044" type="#_x0000_t202" style='position:absolute;
  left:2520;top:5160;width:7200;height:3446'>
  <v:textbox>
   <![if !mso]>
   <table cellpadding=0 cellspacing=0 width="100%">
    <tr>
     <td><![endif]>
     <div>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New"'>&lt;<span
     class=GramE>eclipse</span>&gt; &lt;app&gt; &lt;app <span class=SpellE>args</span>&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span class=GramE><span style='font-size:8.0pt;
     font-family:"Courier New"'>where</span></span><span style='font-size:8.0pt;
     font-family:"Courier New"'><o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New"'><span
     style='mso-tab-count:1'>       </span>&lt;<span class=GramE>eclipse</span>&gt;
     = eclipse (or eclipsec.exe on windows)<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New"'><span
     style='mso-tab-count:1'>       </span>&lt;<span class=GramE>app</span>&gt;
     = -application <span class=SpellE>org.eclipse.cdt.core.GeneratePDOM</span><o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New"'><span
     style='mso-tab-count:1'>       </span>&lt;<span class=GramE>app</span> <span
     class=SpellE>args</span>&gt; =<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New"'>-pprovider
     <span style='color:black'>org.eclipse.cdt.core.index.export.ExternalExportProjectProvider</span><o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New"'>-target
     <span style='color:black'>C:\ExportedPDOMs\acmeSDK_2_5.pdom</span><o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New"'>-source
     <span style='color:black'>E:\AcmeSDK\v2.5\inc</span><o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New"'>-id
     <span style='color:black'>com.acme.mysdk.v2.5<o:p></o:p></span></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span class=GramE><span style='font-size:8.0pt;
     font-family:"Courier New";color:black'>e.g.</span></span><span
     style='font-size:8.0pt;font-family:"Courier New";color:black'> <o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span style='font-size:8.0pt;font-family:"Courier New";
     color:black'>eclipsec.exe -application <span class=SpellE>org.eclipse.cdt.core.GeneratePDOM</span>
     -<span class=SpellE>pprovider</span> <span class=SpellE>org.eclipse.cdt.core.index.export.ExternalExportProjectProvider</span>
     -target C:\ExportedPDOMs\acmeSDK_2_5.pdom -source E:\AcmeSDK\v2.5\inc -id
     com.acme.mysdk.v2.5<o:p></o:p></span></p>
     </div>
     <![if !mso]></td>
    </tr>
   </table>
   <![endif]></v:textbox>
 </v:shape><w:wrap type="none"/>
 <w:anchorlock/>
</v:group><![endif]--><![if !vml]><img width=582 height=277
src="prebuiltIndexes_files/image007.gif" v:shapes="_x0000_s1043 _x0000_s1042 _x0000_s1044"><![endif]><!--[if mso & !supportInlineShapes & supportFields]><v:shape
 id="_x0000_i1029" type="#_x0000_t75" style='width:6in;height:205.5pt'>
 <v:imagedata croptop="-65520f" cropbottom="65520f"/>
</v:shape><span style='mso-element:field-end'></span><![endif]--></p>

<h3 style='text-align:justify'><a name="_Toc164570191"><o:p>&nbsp;</o:p></a></h3>

<h3 style='text-align:justify'><span style='mso-bookmark:_Toc164570191'>Invoking
via an Ant script</span></h3>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>An example script invoking the
application via Ant is shown below:</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'><!--[if mso & !supportInlineShapes & supportFields]><span
style='mso-element:field-begin;mso-field-lock:yes'></span><span
style='mso-spacerun:yes'> </span>SHAPE <span
style='mso-spacerun:yes'> </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span><![endif]--><!--[if gte vml 1]><v:group
 id="_x0000_s1040" editas="canvas" style='width:6in;height:348pt;
 mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
 coordorigin="2520,3825" coordsize="7200,5965">
 <o:lock v:ext="edit" aspectratio="t"/>
 <v:shape id="_x0000_s1039" type="#_x0000_t75" style='position:absolute;left:2520;
  top:3825;width:7200;height:5965' o:preferrelative="f">
  <v:fill o:detectmouseclick="t"/>
  <v:path o:extrusionok="t" o:connecttype="none"/>
 </v:shape><v:shape id="_x0000_s1041" type="#_x0000_t202" style='position:absolute;
  left:2520;top:3825;width:7200;height:5965'>
  <v:textbox>
   <![if !mso]>
   <table cellpadding=0 cellspacing=0 width="100%">
    <tr>
     <td><![endif]>
     <div><pre><span style='font-size:8.0pt;color:black'>&lt;project name=&quot;Generate PDOM&quot; default=&quot;generate&quot;&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'> &lt;target name=&quot;generate&quot;&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>  </span><span
     class=GramE>&lt;!--</span> This script shows how to invoke the default project provider<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'>(<span class=SpellE>ExternalExportProjectProvider</span>) --&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>  </span>&lt;property name=&quot;pprovider&quot;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'>value=&quot;org.eclipse.cdt.core.index.export.ExternalExportProjectProvider&quot;/&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>  </span>&lt;property name=&quot;target&quot; value=&quot;C:\ExportedPDOMs\acmeSDK_2_5.pdom&quot;/&gt; &lt;!--<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'>Where the output <span class=SpellE>pdom</span> is to go --&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>  </span>&lt;property name=&quot;source&quot; value=&quot;E:\AcmeSDK\v2.5\inc&quot;/&gt; &lt;<span
     class=GramE>!--</span> e.g. the directory<o:p></o:p></span></pre><pre><span
     class=GramE><span style='font-size:8.0pt;color:black'>to</span></span><span
     style='font-size:8.0pt;color:black'> source content from --&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>  </span>&lt;property name=&quot;id&quot; value=&quot;com.acme.mysdk.v2.5&quot;/&gt; &lt;<span
     class=GramE>!--</span> the id to store in the<o:p></o:p></span></pre><pre><span
     class=GramE><span style='font-size:8.0pt;color:black'>generate</span></span><span
     style='font-size:8.0pt;color:black'> <span class=SpellE>pdom</span> --&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><o:p>&nbsp;</o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>  </span>&lt;property name=&quot;<span
     class=SpellE>eclipse.home</span>&quot; value=&quot;C:\eclipse&quot;/&gt; &lt;<span
     class=GramE>!--</span> e.g. The eclipse<o:p></o:p></span></pre><pre><span
     class=GramE><span style='font-size:8.0pt;color:black'>installation</span></span><span
     style='font-size:8.0pt;color:black'> to use. This installation must contain CDT 4.0+ <span
     class=SpellE>plugins</span> --&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><o:p>&nbsp;</o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>  </span>&lt;java <span
     class=SpellE>classname</span>=&quot;<span class=SpellE>org.eclipse.equinox.launcher.Main</span>&quot;&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>   </span>&lt;<span
     class=SpellE><span class=GramE>classpath</span></span>&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>    </span>&lt;<span
     class=SpellE>fileset</span> dir=&quot;${<span class=SpellE>eclipse.home</span>}/<span
     class=SpellE>plugins</span>&quot;&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>     </span>&lt;<span
     class=GramE>include</span> name=&quot;*<span class=SpellE>equinox.launcher</span>*.jar&quot;/&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>    </span>&lt;/<span
     class=SpellE>fileset</span>&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>   </span>&lt;/<span
     class=SpellE>classpath</span>&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>   </span>&lt;<span
     class=SpellE>arg</span> value=&quot;-<span class=SpellE>nosplash</span>&quot;/&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>   </span>&lt;<span
     class=SpellE>arg</span> value=&quot;-<span class=SpellE>exitdata</span>&quot;/&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>   </span>&lt;<span
     class=SpellE>arg</span> value=&quot;-application&quot;/&gt;&lt;<span
     class=SpellE>arg</span> value=&quot;<span class=SpellE>org.eclipse.cdt.core.GeneratePDOM</span>&quot;/&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>   </span>&lt;<span
     class=SpellE>arg</span> value=&quot;-<span class=SpellE>pprovider</span>&quot;/&gt;&lt;<span
     class=SpellE>arg</span> value=&quot;${<span class=SpellE>pprovider</span>}&quot;/&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>   </span>&lt;<span
     class=SpellE>arg</span> value=&quot;-source&quot;/&gt;&lt;<span
     class=SpellE>arg</span> value=&quot;${source}&quot;/&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>   </span>&lt;<span
     class=SpellE>arg</span> value=&quot;-target&quot;/&gt;&lt;<span
     class=SpellE>arg</span> value=&quot;${target}&quot;/&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>   </span>&lt;<span
     class=SpellE>arg</span> value=&quot;-id&quot;/&gt;&lt;<span class=SpellE>arg</span> value=&quot;${id}&quot;/&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><span style='mso-spacerun:yes'>  </span>&lt;/java&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'> &lt;/target&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'>&lt;/project&gt;<o:p></o:p></span></pre><pre><span
     style='font-size:8.0pt;color:black'><o:p>&nbsp;</o:p></span></pre>
     <p class=MsoNormal><span style='font-size:8.0pt'><o:p>&nbsp;</o:p></span></p>
     </div>
     <![if !mso]></td>
    </tr>
   </table>
   <![endif]></v:textbox>
 </v:shape><w:wrap type="none"/>
 <w:anchorlock/>
</v:group><![endif]--><![if !vml]><img width=582 height=470
src="prebuiltIndexes_files/image008.gif" v:shapes="_x0000_s1040 _x0000_s1039 _x0000_s1041"><![endif]><!--[if mso & !supportInlineShapes & supportFields]><v:shape
 id="_x0000_i1030" type="#_x0000_t75" style='width:6in;height:348pt'>
 <v:imagedata croptop="-65520f" cropbottom="65520f"/>
</v:shape><span style='mso-element:field-end'></span><![endif]--></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:11.0pt'><o:p>&nbsp;</o:p></span></p>

<span style='font-size:16.0pt;font-family:Arial;mso-fareast-font-family:"Times New Roman";
mso-font-kerning:16.0pt;mso-ansi-language:EN-GB;mso-fareast-language:EN-GB;
mso-bidi-language:AR-SA'><br clear=all style='page-break-before:always'>
</span>

<h1 style='text-align:justify'><a name="_Toc164570192">Import of index content</a><span
style='mso-bookmark:_Toc164570192'></span><span style='font-size:11.0pt'><o:p></o:p></span></h1>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>Once ISV content has been
generated and distributed to the user’s computer, the mechanism to have that
content appear within a CDT 4.0 session is via another extension point:</p>

<p class=MsoNormal style='text-align:justify'><b style='mso-bidi-font-weight:
normal'><span style='mso-tab-count:1'>            </span><span class=SpellE>org.eclipse.cdt.core.CIndex.ReadOnlyPDOMProvider</span><i
style='mso-bidi-font-style:normal'><o:p></o:p></i></b></p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>An implementation of the <span
class=SpellE>IReadOnlyPDOMProvider</span> interface is registered under this
extension point.</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<h2><a name="_Toc164570193"></a><span class=SpellE><span style='mso-bookmark:
_Toc164570193'>IReadOnlyPDOMProvider</span></span><span style='mso-bookmark:
_Toc164570193'></span></h2>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>Since CDT 4.0, the project model
has the concept of project configurations, which in terms of code corresponds
to the interface:</p>

<p class=MsoNormal style='text-align:justify;text-indent:36.0pt'><span
class=SpellE><b style='mso-bidi-font-weight:normal'>org.eclipse.cdt.core.settings.model.ICConfigurationDescription</b></span><b
style='mso-bidi-font-weight:normal'><o:p></o:p></b></p>

<p class=MsoNormal style='text-align:justify;text-indent:36.0pt'><b
style='mso-bidi-font-weight:normal'><o:p>&nbsp;</o:p></b></p>

<p class=MsoNormal style='text-align:justify'>The index model allows content to
be associated with <span class=SpellE>ICConfigurationDescription</span> objects
via the <span class=SpellE>CIndex.ReadOnlyPDOMProvider</span> extension point.
ISV implementations are expected to examine the specified <span class=SpellE>ICConfigurationDescription</span>
object, and determine from its properties (for example, macros and include
paths, or perhaps custom builder properties) which ISV content is relevant. </p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'><!--[if mso & !supportInlineShapes & supportFields]><span
style='mso-element:field-begin;mso-field-lock:yes'></span><span
style='mso-spacerun:yes'> </span>SHAPE <span
style='mso-spacerun:yes'> </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span><![endif]--><!--[if gte vml 1]><v:group
 id="_x0000_s1037" editas="canvas" style='width:459pt;height:126pt;
 mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
 coordorigin="2520,4297" coordsize="7650,2160">
 <o:lock v:ext="edit" aspectratio="t"/>
 <v:shape id="_x0000_s1036" type="#_x0000_t75" style='position:absolute;left:2520;
  top:4297;width:7650;height:2160' o:preferrelative="f">
  <v:fill o:detectmouseclick="t"/>
  <v:path o:extrusionok="t" o:connecttype="none"/>
 </v:shape><v:shape id="_x0000_s1038" type="#_x0000_t202" style='position:absolute;
  left:2520;top:4297;width:7650;height:2160'>
  <v:textbox>
   <![if !mso]>
   <table cellpadding=0 cellspacing=0 width="100%">
    <tr>
     <td><![endif]>
     <div>
     <p class=MsoNormal><span class=GramE>public</span> interface <span
     class=SpellE>IReadOnlyPDOMProvider</span> extends <span class=SpellE>IIndexProvider</span>
     {</p>
     <p class=MsoNormal><span style='mso-tab-count:1'>            </span><span
     class=GramE>public</span> <span class=SpellE>IPDOMDescriptor</span>[] <span
     class=SpellE>getDescriptors</span>(<span class=SpellE>ICConfigurationDescription</span>
     <span class=SpellE>config</span>);</p>
     <p class=MsoNormal>}</p>
     <p class=MsoNormal><o:p>&nbsp;</o:p></p>
     <p class=MsoNormal><span class=GramE>public</span> interface <span
     class=SpellE>IPDOMDescriptor</span> {</p>
     <p class=MsoNormal><span style='mso-tab-count:1'>            </span><span
     class=SpellE>IPath</span> <span class=SpellE><span class=GramE>getLocation</span></span><span
     class=GramE>(</span>);</p>
     <p class=MsoNormal><span style='mso-tab-count:1'>            </span><span
     class=SpellE>IIndexLocationConverter</span> <span class=SpellE><span
     class=GramE>getIndexLocationConverter</span></span><span class=GramE>(</span>);</p>
     <p class=MsoNormal>}</p>
     </div>
     <![if !mso]></td>
    </tr>
   </table>
   <![endif]></v:textbox>
 </v:shape><w:wrap type="none"/>
 <w:anchorlock/>
</v:group><![endif]--><![if !vml]><img width=618 height=174
src="prebuiltIndexes_files/image009.gif" v:shapes="_x0000_s1037 _x0000_s1036 _x0000_s1038"><![endif]><!--[if mso & !supportInlineShapes & supportFields]><v:shape
 id="_x0000_i1031" type="#_x0000_t75" style='width:459pt;height:126pt'>
 <v:imagedata croptop="-65520f" cropbottom="65520f"/>
</v:shape><span style='mso-element:field-end'></span><![endif]--></p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>The interface <span class=SpellE>IReadOnlyPDOMProvider</span>
allows index content contributors to register content related to a particular <span
class=SpellE>ICConfigurationDescription</span>. This will be queried
dynamically, so it is important to perform only inexpensive logic in this
method. The resulting <span class=SpellE>IPDOMDescriptor</span> objects will be
used to load PDOM format files into the logical index. </p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>The <span class=SpellE>IPDOMDescriptor</span>
consists of the absolute path of the PDOM format file, and a location converter
suitable for converting from the file’s internal representation of paths to the
runtime IIndexFileLocation objects used by the indexing API. The location
converter must be compatible with the one used on export. Again, a default
implementation is provided. If you exported your index content with
org.eclipse.cdt.core.index.ResourceContainerRelativeLocationConverter then the
location converter <span class=SpellE>org.eclipse.cdt.core.index.URIRelativeLocationConverter</span>
is internal format compatible.</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'>Once the provider is registered
in the CDT extension point, then the pre-built index content will be available
via index-based features in the IDE for the appropriate configurations.</p>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal><!--[if mso & !supportInlineShapes & supportFields]><span
style='mso-element:field-begin;mso-field-lock:yes'></span><span
style='mso-spacerun:yes'> </span>SHAPE <span
style='mso-spacerun:yes'> </span>\* MERGEFORMAT <span style='mso-element:field-separator'></span><![endif]--><!--[if gte vml 1]><v:group
 id="_x0000_s1049" editas="canvas" style='width:6in;height:162pt;
 mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
 coordorigin="2520,937" coordsize="7200,2777">
 <o:lock v:ext="edit" aspectratio="t"/>
 <v:shape id="_x0000_s1048" type="#_x0000_t75" style='position:absolute;left:2520;
  top:937;width:7200;height:2777' o:preferrelative="f">
  <v:fill o:detectmouseclick="t"/>
  <v:path o:extrusionok="t" o:connecttype="none"/>
 </v:shape><v:shape id="_x0000_s1050" type="#_x0000_t202" style='position:absolute;
  left:2520;top:937;width:7200;height:2777'>
  <v:textbox>
   <![if !mso]>
   <table cellpadding=0 cellspacing=0 width="100%">
    <tr>
     <td><![endif]>
     <div>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'>&lt;<span class=SpellE><span class=GramE>plugin</span></span>&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>    </span>...<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>   </span>&lt;extension <o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>        </span><span
     class=GramE>point</span>=&quot;org.eclipse.cdt.core.CIndex&quot;&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>      </span>&lt;<span
     class=SpellE>ReadOnlyPDOMProvider</span><o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>           
     </span>class=&quot;<span class=SpellE>com.acme.sdk.PrebuiltSDKPDOMProvider</span>&quot;/&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>   </span>&lt;/extension&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><span style='mso-spacerun:yes'>    </span>...<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'>&lt;/<span class=SpellE>plugin</span>&gt;<o:p></o:p></span></p>
     <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
     color:black'><o:p>&nbsp;</o:p></span></p>
     </div>
     <![if !mso]></td>
    </tr>
   </table>
   <![endif]></v:textbox>
 </v:shape><w:wrap type="none"/>
 <w:anchorlock/>
</v:group><![endif]--><![if !vml]><img width=582 height=222
src="prebuiltIndexes_files/image010.gif" v:shapes="_x0000_s1049 _x0000_s1048 _x0000_s1050"><![endif]><!--[if mso & !supportInlineShapes & supportFields]><v:shape
 id="_x0000_i1032" type="#_x0000_t75" style='width:6in;height:162pt'>
 <v:imagedata croptop="-65520f" cropbottom="65520f"/>
</v:shape><span style='mso-element:field-end'></span><![endif]--><br clear=all
style='mso-special-character:line-break;page-break-before:always'>
</p>

<p class=MsoNormal><span class=Heading1Char><span style='font-size:11.0pt;
mso-bidi-font-size:16.0pt'>Appendix A</span></span><span style='font-size:11.0pt;
mso-bidi-font-size:12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";
mso-font-kerning:16.0pt'><o:p></o:p></span></p>

<p class=MsoBodyText><span style='font-size:10.0pt'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span class=GramE><span style='font-size:10.0pt'>package</span></span><span
style='font-size:10.0pt'> <span class=SpellE>org.eclipse.cdt.core.index</span>;<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'>/**<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* Each <span class=SpellE>IIndexFragment</span>
stores file location representations in an implementation specific manner.<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* External to <span class=SpellE>IIndexFragment</span>
files are identified by an {@link <span class=SpellE>IIndexFileLocation</span>}<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* <o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* Internal to <span class=SpellE>IIndexFragment</span>
a mechanism for converting between the string location format used<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* <span class=GramE>and</span> the URI world
is needed. This interface represents that mechanism.<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>*/<o:p></o:p></span></p>

<p class=MsoNormal><span class=GramE><span style='font-size:10.0pt'>public</span></span><span
style='font-size:10.0pt'> interface <span class=SpellE>IIndexLocationConverter</span>
{<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span>/**<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span style='mso-spacerun:yes'> </span>* Convert a
raw string in an internal <span class=SpellE>IIndexFragment</span>
implementation specific format to <o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span style='mso-spacerun:yes'> </span>* <span
class=GramE>an</span> <span class=SpellE>IIndexFileLocation</span> or null if
the internal format could not be translated.<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span style='mso-spacerun:yes'> </span>* @<span
class=SpellE>param</span> raw<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span style='mso-spacerun:yes'> </span>* @return<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span style='mso-spacerun:yes'> </span>*/<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span class=GramE>public</span> abstract <span
class=SpellE>IIndexFileLocation</span> <span class=SpellE>fromInternalFormat</span>(String
raw);<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span>/**<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span style='mso-spacerun:yes'> </span>* Convert <span
class=GramE>a</span> <span class=SpellE>IIndexFileLocation</span> to the
internal <span class=SpellE>IIndexFragment</span> implementation specific
format<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span style='mso-spacerun:yes'> </span>* <span
class=GramE>or</span> null if the location could not be translated.<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span style='mso-spacerun:yes'> </span>* @<span
class=SpellE>param</span> location<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span style='mso-spacerun:yes'> </span>* @return an
internal representation for the location specified<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span style='mso-spacerun:yes'> </span>*/<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><span style='mso-tab-count:
1'>                </span><span class=GramE>public</span> abstract String <span
class=SpellE>toInternalFormat</span>(<span class=SpellE>IIndexFileLocation</span>
location);<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:10.0pt'>}<o:p></o:p></span></p>

<span style='font-size:16.0pt;font-family:Arial;mso-fareast-font-family:"Times New Roman";
mso-font-kerning:16.0pt;mso-ansi-language:EN-GB;mso-fareast-language:EN-GB;
mso-bidi-language:AR-SA'><br clear=all style='page-break-before:always'>
</span>

<h1><a name="_Toc164570194"><span style='font-size:11.0pt;mso-bidi-font-size:
16.0pt'>Appendix B</span></a><span style='font-size:11.0pt;mso-bidi-font-size:
16.0pt'><o:p></o:p></span></h1>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt;
font-family:"Courier New";color:black'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'>/*******************************************************************************<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* Copyright (c) 2006 Symbian Software Ltd. and
others.<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* All rights reserved. This program and the
accompanying materials<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* are made available under the terms of the
Eclipse Public License v1.0<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* <span class=GramE>which</span> accompanies
this distribution, and is available at<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* http://www.eclipse.org/legal/epl-v10.html<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>*<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* Contributors:<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>*<span style='mso-spacerun:yes'>   
</span>Andrew Ferguson (Symbian) - initial API and implementation<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>*******************************************************************************/
<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span class=GramE><span
style='font-size:10.0pt'>package</span></span><span style='font-size:10.0pt'> <span
class=SpellE>org.eclipse.cdt.core.index</span>;<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span class=GramE><span
style='font-size:10.0pt'>import</span></span><span style='font-size:10.0pt'> <span
class=SpellE>java.net.URI</span>;<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'>/**<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* Files in the index are (conceptually)
partitioned into workspace and non-workspace (external) files.<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* Clients can obtain instances of
IIndexFileLocation implementations from {@link <span class=SpellE>IndexLocationFactory</span>}<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* &lt;p&gt;<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* This interface is not intended to be
implemented by clients.<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* &lt;/p&gt;<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* &lt;p&gt;<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span><span class=GramE>*
&lt;strong&gt;EXPERIMENTAL&lt;/strong&gt;.</span> This class or interface has
been added as<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* <span class=GramE>part</span> of a work in
progress. There is no guarantee that this API will work or<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* <span class=GramE>that</span> it will remain
the same. Please do not use this API without consulting<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* <span class=GramE>with</span> the CDT team.<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* &lt;/p&gt;<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* <o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>* @since 4.0<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'> </span>*/<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span class=GramE><span
style='font-size:10.0pt'>public</span></span><span style='font-size:10.0pt'>
interface IIndexFileLocation {<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span>/**<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span><span
style='mso-spacerun:yes'> </span>* The URI of the indexed file<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span><span
style='mso-spacerun:yes'> </span>* @return the URI of the indexed file
(non-null)<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span><span
style='mso-spacerun:yes'> </span>*/<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span><span class=GramE>public</span>
URI <span class=SpellE>getURI</span>();<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span><o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span>/**<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span><span
style='mso-spacerun:yes'> </span>* Return the workspace relative path of the
indexed file or null if the file<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span><span
style='mso-spacerun:yes'> </span>* is not in the workspace <o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span><span
style='mso-spacerun:yes'> </span>* @return the workspace relative path of the
file in the index, or null if the<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-spacerun:yes'>     </span>* <span class=GramE>file</span> is not in
the workspace<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span><span
style='mso-spacerun:yes'> </span>*/<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><span
style='mso-tab-count:1'>                </span><span class=GramE>public</span>
String <span class=SpellE>getFullPath</span>();<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'>}<o:p></o:p></span></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:10.0pt'><o:p>&nbsp;</o:p></span></p>

<span style='font-size:16.0pt;font-family:Arial;mso-fareast-font-family:"Times New Roman";
mso-font-kerning:16.0pt;mso-ansi-language:EN-GB;mso-fareast-language:EN-GB;
mso-bidi-language:AR-SA'><br clear=all style='page-break-before:always'>
</span>

<h1><a name="_Toc164570195">References</a></h1>

<p class=MsoNormal style='text-align:justify'><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='text-align:justify'><span style='font-size:9.0pt'>[1]<span
style='mso-tab-count:1'>           </span><a
href="../../../../org.eclipse.platform.doc.user/tasks/running_eclipse.htm">http://help.eclipse.org/help32/index.jsp?topic=/org.eclipse.platform.doc.user/tasks/running_eclipse.htm</a><o:p></o:p></span></p>

</div>

</body>

</html>

Back to the top