This file is indexed.

/usr/share/doc/libosgi-core-java/api/org/osgi/framework/Bundle.html is in libosgi-core-java-doc 4.3.0-1.

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

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_23) on Sun Nov 20 13:35:18 UTC 2011 -->
<TITLE>
Bundle
</TITLE>

<META NAME="date" CONTENT="2011-11-20">

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

<SCRIPT type="text/javascript">
function windowTitle()
{
    if (location.href.indexOf('is-external=true') == -1) {
        parent.document.title="Bundle";
    }
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>

</HEAD>

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


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

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;<A HREF="../../../org/osgi/framework/AllServiceListener.html" title="interface in org.osgi.framework"><B>PREV CLASS</B></A>&nbsp;
&nbsp;<A HREF="../../../org/osgi/framework/BundleActivator.html" title="interface in org.osgi.framework"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="../../../index.html?org/osgi/framework/Bundle.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="Bundle.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>


</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->

<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.osgi.framework</FONT>
<BR>
Interface Bundle</H2>
<DL>
<DT><B>All Superinterfaces:</B> <DD>java.lang.Comparable&lt;<A HREF="../../../org/osgi/framework/Bundle.html" title="interface in org.osgi.framework">Bundle</A>&gt;</DD>
</DL>
<DL>
<DT><B>All Known Subinterfaces:</B> <DD><A HREF="../../../org/osgi/framework/launch/Framework.html" title="interface in org.osgi.framework.launch">Framework</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public interface <B>Bundle</B><DT>extends java.lang.Comparable&lt;<A HREF="../../../org/osgi/framework/Bundle.html" title="interface in org.osgi.framework">Bundle</A>&gt;</DL>
</PRE>

<P>
An installed bundle in the Framework.
 
 <p>
 A <code>Bundle</code> object is the access point to define the lifecycle of an
 installed bundle. Each bundle installed in the OSGi environment must have an
 associated <code>Bundle</code> object.
 
 <p>
 A bundle must have a unique identity, a <code>long</code>, chosen by the
 Framework. This identity must not change during the lifecycle of a bundle,
 even when the bundle is updated. Uninstalling and then reinstalling the
 bundle must create a new unique identity.
 
 <p>
 A bundle can be in one of six states:
 <ul>
 <li><A HREF="../../../org/osgi/framework/Bundle.html#UNINSTALLED"><CODE>UNINSTALLED</CODE></A>
 <li><A HREF="../../../org/osgi/framework/Bundle.html#INSTALLED"><CODE>INSTALLED</CODE></A>
 <li><A HREF="../../../org/osgi/framework/Bundle.html#RESOLVED"><CODE>RESOLVED</CODE></A>
 <li><A HREF="../../../org/osgi/framework/Bundle.html#STARTING"><CODE>STARTING</CODE></A>
 <li><A HREF="../../../org/osgi/framework/Bundle.html#STOPPING"><CODE>STOPPING</CODE></A>
 <li><A HREF="../../../org/osgi/framework/Bundle.html#ACTIVE"><CODE>ACTIVE</CODE></A>
 </ul>
 <p>
 Values assigned to these states have no specified ordering; they represent
 bit values that may be ORed together to determine if a bundle is in one of
 the valid states.
 
 <p>
 A bundle should only have active threads of execution when its state is one
 of <code>STARTING</code>,<code>ACTIVE</code>, or <code>STOPPING</code>. An <code>UNINSTALLED</code> bundle can not be set to another state; it is a zombie and can
 only be reached because references are kept somewhere.
 
 <p>
 The Framework is the only entity that is allowed to create <code>Bundle</code>
 objects, and these objects are only valid within the Framework that created
 them.
 
 <p>
 Bundles have a natural ordering such that if two <code>Bundle</code>s have the
 same <A HREF="../../../org/osgi/framework/Bundle.html#getBundleId()"><CODE>bundle id</CODE></A> they are equal. A <code>Bundle</code> is
 less than another <code>Bundle</code> if it has a lower <A HREF="../../../org/osgi/framework/Bundle.html#getBundleId()"><CODE>bundle id</CODE></A> and is greater if it has a higher bundle id.
<P>

<P>
<HR>

<P>
<!-- =========== FIELD SUMMARY =========== -->

<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Field Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#ACTIVE">ACTIVE</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The bundle is now running.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#INSTALLED">INSTALLED</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The bundle is installed but not yet resolved.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#RESOLVED">RESOLVED</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The bundle is resolved and is able to be started.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#SIGNERS_ALL">SIGNERS_ALL</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Request that all certificates used to sign the bundle be returned.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#SIGNERS_TRUSTED">SIGNERS_TRUSTED</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Request that only certificates used to sign the bundle that are trusted
 by the framework be returned.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#START_ACTIVATION_POLICY">START_ACTIVATION_POLICY</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The bundle start operation must activate the bundle according to the
 bundle's declared <A HREF="../../../org/osgi/framework/Constants.html#BUNDLE_ACTIVATIONPOLICY"><CODE>activation
 policy</CODE></A>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#START_TRANSIENT">START_TRANSIENT</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The bundle start operation is transient and the persistent autostart
 setting of the bundle is not modified.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#STARTING">STARTING</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The bundle is in the process of starting.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#STOP_TRANSIENT">STOP_TRANSIENT</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The bundle stop is transient and the persistent autostart setting of the
 bundle is not modified.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#STOPPING">STOPPING</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The bundle is in the process of stopping.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#UNINSTALLED">UNINSTALLED</A></B></CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The bundle is uninstalled and may not be used.</TD>
</TR>
</TABLE>
&nbsp;
<!-- ========== METHOD SUMMARY =========== -->

<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY="">
<TR ALIGN="right" VALIGN="">
<TD NOWRAP><FONT SIZE="-1">
<CODE>&lt;A&gt; A</CODE></FONT></TD>
</TR>
</TABLE>
</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#adapt(java.lang.Class)">adapt</A></B>(java.lang.Class&lt;A&gt;&nbsp;type)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adapt this bundle to the specified type.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.util.Enumeration&lt;java.net.URL&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#findEntries(java.lang.String, java.lang.String, boolean)">findEntries</A></B>(java.lang.String&nbsp;path,
            java.lang.String&nbsp;filePattern,
            boolean&nbsp;recurse)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns entries in this bundle and its attached fragments.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;<A HREF="../../../org/osgi/framework/BundleContext.html" title="interface in org.osgi.framework">BundleContext</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getBundleContext()">getBundleContext</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns this bundle's <A HREF="../../../org/osgi/framework/BundleContext.html" title="interface in org.osgi.framework"><CODE>BundleContext</CODE></A>.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;long</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getBundleId()">getBundleId</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns this bundle's unique identifier.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.io.File</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getDataFile(java.lang.String)">getDataFile</A></B>(java.lang.String&nbsp;filename)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates a <code>File</code> object for a file in the persistent storage area
 provided for this bundle by the Framework.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.net.URL</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getEntry(java.lang.String)">getEntry</A></B>(java.lang.String&nbsp;path)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a URL to the entry at the specified path in this bundle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.util.Enumeration&lt;java.lang.String&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getEntryPaths(java.lang.String)">getEntryPaths</A></B>(java.lang.String&nbsp;path)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an Enumeration of all the paths (<code>String</code> objects) to
 entries within this bundle whose longest sub-path matches the specified
 path.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.util.Dictionary&lt;java.lang.String,java.lang.String&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getHeaders()">getHeaders</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns this bundle's Manifest headers and values.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.util.Dictionary&lt;java.lang.String,java.lang.String&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getHeaders(java.lang.String)">getHeaders</A></B>(java.lang.String&nbsp;locale)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns this bundle's Manifest headers and values localized to the
 specified locale.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;long</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getLastModified()">getLastModified</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the time when this bundle was last modified.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getLocation()">getLocation</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns this bundle's location identifier.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;<A HREF="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework">ServiceReference</A>&lt;?&gt;[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getRegisteredServices()">getRegisteredServices</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns this bundle's <code>ServiceReference</code> list for all services it
 has registered or <code>null</code> if this bundle has no registered services.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.net.URL</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getResource(java.lang.String)">getResource</A></B>(java.lang.String&nbsp;name)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Find the specified resource from this bundle's class loader.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.util.Enumeration&lt;java.net.URL&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getResources(java.lang.String)">getResources</A></B>(java.lang.String&nbsp;name)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Find the specified resources from this bundle's class loader.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;<A HREF="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework">ServiceReference</A>&lt;?&gt;[]</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getServicesInUse()">getServicesInUse</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns this bundle's <code>ServiceReference</code> list for all services it
 is using or returns <code>null</code> if this bundle is not using any
 services.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.util.Map&lt;java.security.cert.X509Certificate,java.util.List&lt;java.security.cert.X509Certificate&gt;&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getSignerCertificates(int)">getSignerCertificates</A></B>(int&nbsp;signersType)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Return the certificates for the signers of this bundle and the
 certificate chains for those signers.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getState()">getState</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns this bundle's current state.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getSymbolicName()">getSymbolicName</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the symbolic name of this bundle as specified by its <code>Bundle-SymbolicName</code> manifest header.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;<A HREF="../../../org/osgi/framework/Version.html" title="class in org.osgi.framework">Version</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#getVersion()">getVersion</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the version of this bundle as specified by its <code>Bundle-Version</code> manifest header.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#hasPermission(java.lang.Object)">hasPermission</A></B>(java.lang.Object&nbsp;permission)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Determines if this bundle has the specified permissions.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;java.lang.Class&lt;?&gt;</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#loadClass(java.lang.String)">loadClass</A></B>(java.lang.String&nbsp;name)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Loads the specified class using this bundle's class loader.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#start()">start</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Starts this bundle with no options.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#start(int)">start</A></B>(int&nbsp;options)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Starts this bundle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#stop()">stop</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Stops this bundle with no options.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#stop(int)">stop</A></B>(int&nbsp;options)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Stops this bundle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#uninstall()">uninstall</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Uninstalls this bundle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#update()">update</A></B>()</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Updates this bundle.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>&nbsp;void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../org/osgi/framework/Bundle.html#update(java.io.InputStream)">update</A></B>(java.io.InputStream&nbsp;input)</CODE>

<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Updates this bundle from an <code>InputStream</code>.</TD>
</TR>
</TABLE>
&nbsp;<A NAME="methods_inherited_from_class_java.lang.Comparable"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from interface java.lang.Comparable</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>compareTo</CODE></TD>
</TR>
</TABLE>
&nbsp;
<P>

<!-- ============ FIELD DETAIL =========== -->

<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Field Detail</B></FONT></TH>
</TR>
</TABLE>

<A NAME="UNINSTALLED"><!-- --></A><H3>
UNINSTALLED</H3>
<PRE>
static final int <B>UNINSTALLED</B></PRE>
<DL>
<DD>The bundle is uninstalled and may not be used.
 
 <p>
 The <code>UNINSTALLED</code> state is only visible after a bundle is
 uninstalled; the bundle is in an unusable state but references to the
 <code>Bundle</code> object may still be available and used for introspection.
 <p>
 The value of <code>UNINSTALLED</code> is 0x00000001.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.osgi.framework.Bundle.UNINSTALLED">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="INSTALLED"><!-- --></A><H3>
INSTALLED</H3>
<PRE>
static final int <B>INSTALLED</B></PRE>
<DL>
<DD>The bundle is installed but not yet resolved.
 
 <p>
 A bundle is in the <code>INSTALLED</code> state when it has been installed in
 the Framework but is not or cannot be resolved.
 <p>
 This state is visible if the bundle's code dependencies are not resolved.
 The Framework may attempt to resolve an <code>INSTALLED</code> bundle's code
 dependencies and move the bundle to the <code>RESOLVED</code> state.
 <p>
 The value of <code>INSTALLED</code> is 0x00000002.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.osgi.framework.Bundle.INSTALLED">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="RESOLVED"><!-- --></A><H3>
RESOLVED</H3>
<PRE>
static final int <B>RESOLVED</B></PRE>
<DL>
<DD>The bundle is resolved and is able to be started.
 
 <p>
 A bundle is in the <code>RESOLVED</code> state when the Framework has
 successfully resolved the bundle's code dependencies. These dependencies
 include:
 <ul>
 <li>The bundle's class path from its <A HREF="../../../org/osgi/framework/Constants.html#BUNDLE_CLASSPATH"><CODE>Constants.BUNDLE_CLASSPATH</CODE></A>
 Manifest header.
 <li>The bundle's package dependencies from its
 <A HREF="../../../org/osgi/framework/Constants.html#EXPORT_PACKAGE"><CODE>Constants.EXPORT_PACKAGE</CODE></A> and <A HREF="../../../org/osgi/framework/Constants.html#IMPORT_PACKAGE"><CODE>Constants.IMPORT_PACKAGE</CODE></A>
 Manifest headers.
 <li>The bundle's required bundle dependencies from its
 <A HREF="../../../org/osgi/framework/Constants.html#REQUIRE_BUNDLE"><CODE>Constants.REQUIRE_BUNDLE</CODE></A> Manifest header.
 <li>A fragment bundle's host dependency from its
 <A HREF="../../../org/osgi/framework/Constants.html#FRAGMENT_HOST"><CODE>Constants.FRAGMENT_HOST</CODE></A> Manifest header.
 </ul>
 <p>
 Note that the bundle is not active yet. A bundle must be put in the
 <code>RESOLVED</code> state before it can be started. The Framework may
 attempt to resolve a bundle at any time.
 <p>
 The value of <code>RESOLVED</code> is 0x00000004.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.osgi.framework.Bundle.RESOLVED">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="STARTING"><!-- --></A><H3>
STARTING</H3>
<PRE>
static final int <B>STARTING</B></PRE>
<DL>
<DD>The bundle is in the process of starting.
 
 <p>
 A bundle is in the <code>STARTING</code> state when its <A HREF="../../../org/osgi/framework/Bundle.html#start(int)"><CODE>start</CODE></A> method is active. A bundle must be in this state when the bundle's
 <A HREF="../../../org/osgi/framework/BundleActivator.html#start(org.osgi.framework.BundleContext)"><CODE>BundleActivator.start(org.osgi.framework.BundleContext)</CODE></A> is called. If the <code>BundleActivator.start</code> method completes without exception, then the
 bundle has successfully started and must move to the <code>ACTIVE</code>
 state.
 <p>
 If the bundle has a <A HREF="../../../org/osgi/framework/Constants.html#ACTIVATION_LAZY"><CODE>lazy activation
 policy</CODE></A>, then the bundle may remain in this state for some time until the
 activation is triggered.
 <p>
 The value of <code>STARTING</code> is 0x00000008.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.osgi.framework.Bundle.STARTING">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="STOPPING"><!-- --></A><H3>
STOPPING</H3>
<PRE>
static final int <B>STOPPING</B></PRE>
<DL>
<DD>The bundle is in the process of stopping.
 
 <p>
 A bundle is in the <code>STOPPING</code> state when its <A HREF="../../../org/osgi/framework/Bundle.html#stop(int)"><CODE>stop</CODE></A> method is active. A bundle must be in this state when the bundle's
 <A HREF="../../../org/osgi/framework/BundleActivator.html#stop(org.osgi.framework.BundleContext)"><CODE>BundleActivator.stop(org.osgi.framework.BundleContext)</CODE></A> method is called. When the <code>BundleActivator.stop</code> method completes the bundle is stopped and must
 move to the <code>RESOLVED</code> state.
 <p>
 The value of <code>STOPPING</code> is 0x00000010.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.osgi.framework.Bundle.STOPPING">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="ACTIVE"><!-- --></A><H3>
ACTIVE</H3>
<PRE>
static final int <B>ACTIVE</B></PRE>
<DL>
<DD>The bundle is now running.
 
 <p>
 A bundle is in the <code>ACTIVE</code> state when it has been successfully
 started and activated.
 <p>
 The value of <code>ACTIVE</code> is 0x00000020.
<P>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../constant-values.html#org.osgi.framework.Bundle.ACTIVE">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="START_TRANSIENT"><!-- --></A><H3>
START_TRANSIENT</H3>
<PRE>
static final int <B>START_TRANSIENT</B></PRE>
<DL>
<DD>The bundle start operation is transient and the persistent autostart
 setting of the bundle is not modified.
 
 <p>
 This bit may be set when calling <A HREF="../../../org/osgi/framework/Bundle.html#start(int)"><CODE>start(int)</CODE></A> to notify the
 framework that the autostart setting of the bundle must not be modified.
 If this bit is not set, then the autostart setting of the bundle is
 modified.
<P>
<DL>
<DT><B>Since:</B></DT>
  <DD>1.4</DD>
<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#start(int)"><CODE>start(int)</CODE></A>, 
<A HREF="../../../constant-values.html#org.osgi.framework.Bundle.START_TRANSIENT">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="START_ACTIVATION_POLICY"><!-- --></A><H3>
START_ACTIVATION_POLICY</H3>
<PRE>
static final int <B>START_ACTIVATION_POLICY</B></PRE>
<DL>
<DD>The bundle start operation must activate the bundle according to the
 bundle's declared <A HREF="../../../org/osgi/framework/Constants.html#BUNDLE_ACTIVATIONPOLICY"><CODE>activation
 policy</CODE></A>.
 
 <p>
 This bit may be set when calling <A HREF="../../../org/osgi/framework/Bundle.html#start(int)"><CODE>start(int)</CODE></A> to notify the
 framework that the bundle must be activated using the bundle's declared
 activation policy.
<P>
<DL>
<DT><B>Since:</B></DT>
  <DD>1.4</DD>
<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Constants.html#BUNDLE_ACTIVATIONPOLICY"><CODE>Constants.BUNDLE_ACTIVATIONPOLICY</CODE></A>, 
<A HREF="../../../org/osgi/framework/Bundle.html#start(int)"><CODE>start(int)</CODE></A>, 
<A HREF="../../../constant-values.html#org.osgi.framework.Bundle.START_ACTIVATION_POLICY">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="STOP_TRANSIENT"><!-- --></A><H3>
STOP_TRANSIENT</H3>
<PRE>
static final int <B>STOP_TRANSIENT</B></PRE>
<DL>
<DD>The bundle stop is transient and the persistent autostart setting of the
 bundle is not modified.
 
 <p>
 This bit may be set when calling <A HREF="../../../org/osgi/framework/Bundle.html#stop(int)"><CODE>stop(int)</CODE></A> to notify the
 framework that the autostart setting of the bundle must not be modified.
 If this bit is not set, then the autostart setting of the bundle is
 modified.
<P>
<DL>
<DT><B>Since:</B></DT>
  <DD>1.4</DD>
<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#stop(int)"><CODE>stop(int)</CODE></A>, 
<A HREF="../../../constant-values.html#org.osgi.framework.Bundle.STOP_TRANSIENT">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="SIGNERS_ALL"><!-- --></A><H3>
SIGNERS_ALL</H3>
<PRE>
static final int <B>SIGNERS_ALL</B></PRE>
<DL>
<DD>Request that all certificates used to sign the bundle be returned.
<P>
<DL>
<DT><B>Since:</B></DT>
  <DD>1.5</DD>
<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#getSignerCertificates(int)"><CODE>getSignerCertificates(int)</CODE></A>, 
<A HREF="../../../constant-values.html#org.osgi.framework.Bundle.SIGNERS_ALL">Constant Field Values</A></DL>
</DL>
<HR>

<A NAME="SIGNERS_TRUSTED"><!-- --></A><H3>
SIGNERS_TRUSTED</H3>
<PRE>
static final int <B>SIGNERS_TRUSTED</B></PRE>
<DL>
<DD>Request that only certificates used to sign the bundle that are trusted
 by the framework be returned.
<P>
<DL>
<DT><B>Since:</B></DT>
  <DD>1.5</DD>
<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#getSignerCertificates(int)"><CODE>getSignerCertificates(int)</CODE></A>, 
<A HREF="../../../constant-values.html#org.osgi.framework.Bundle.SIGNERS_TRUSTED">Constant Field Values</A></DL>
</DL>

<!-- ============ METHOD DETAIL ========== -->

<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>

<A NAME="getState()"><!-- --></A><H3>
getState</H3>
<PRE>
int <B>getState</B>()</PRE>
<DL>
<DD>Returns this bundle's current state.
 
 <p>
 A bundle can be in only one state at any time.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Returns:</B><DD>An element of <code>UNINSTALLED</code>,<code>INSTALLED</code>,
         <code>RESOLVED</code>, <code>STARTING</code>, <code>STOPPING</code>,
         <code>ACTIVE</code>.</DL>
</DD>
</DL>
<HR>

<A NAME="start(int)"><!-- --></A><H3>
start</H3>
<PRE>
void <B>start</B>(int&nbsp;options)
           throws <A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></PRE>
<DL>
<DD>Starts this bundle.
 
 <p>
 If this bundle's state is <code>UNINSTALLED</code> then an
 <code>IllegalStateException</code> is thrown.
 <p>
 If the current start level is less than this bundle's start level:
 <ul>
 <li>If the <A HREF="../../../org/osgi/framework/Bundle.html#START_TRANSIENT"><CODE>START_TRANSIENT</CODE></A> option is set, then a
 <code>BundleException</code> is thrown indicating this bundle cannot be
 started due to the Framework's current start level.
 
 <li>Otherwise, the Framework must set this bundle's persistent autostart
 setting to <em>Started with declared activation</em> if the
 <A HREF="../../../org/osgi/framework/Bundle.html#START_ACTIVATION_POLICY"><CODE>START_ACTIVATION_POLICY</CODE></A> option is set or
 <em>Started with eager activation</em> if not set.
 </ul>
 <p>
 When the Framework's current start level becomes equal to or more than
 this bundle's start level, this bundle will be started.
 <p>
 Otherwise, the following steps are required to start this bundle:
 <ol>
 <li>If this bundle is in the process of being activated or deactivated
 then this method must wait for activation or deactivation to complete
 before continuing. If this does not occur in a reasonable time, a
 <code>BundleException</code> is thrown to indicate this bundle was unable to
 be started.
 
 <li>If this bundle's state is <code>ACTIVE</code> then this method returns
 immediately.
 
 <li>If the <A HREF="../../../org/osgi/framework/Bundle.html#START_TRANSIENT"><CODE>START_TRANSIENT</CODE></A> option is not set then set this
 bundle's autostart setting to <em>Started with declared activation</em>
 if the <A HREF="../../../org/osgi/framework/Bundle.html#START_ACTIVATION_POLICY"><CODE>START_ACTIVATION_POLICY</CODE></A> option is set or
 <em>Started with eager activation</em> if not set. When the Framework is
 restarted and this bundle's autostart setting is not <em>Stopped</em>,
 this bundle must be automatically started.
 
 <li>If this bundle's state is not <code>RESOLVED</code>, an attempt is made to
 resolve this bundle. If the Framework cannot resolve this bundle, a
 <code>BundleException</code> is thrown.
 
 <li>If the <A HREF="../../../org/osgi/framework/Bundle.html#START_ACTIVATION_POLICY"><CODE>START_ACTIVATION_POLICY</CODE></A> option is set and this
 bundle's declared activation policy is <A HREF="../../../org/osgi/framework/Constants.html#ACTIVATION_LAZY"><CODE>lazy</CODE></A> then:
 <ul>
 <li>If this bundle's state is <code>STARTING</code> then this method returns
 immediately.
 <li>This bundle's state is set to <code>STARTING</code>.
 <li>A bundle event of type <A HREF="../../../org/osgi/framework/BundleEvent.html#LAZY_ACTIVATION"><CODE>BundleEvent.LAZY_ACTIVATION</CODE></A> is fired.
 <li>This method returns immediately and the remaining steps will be
 followed when this bundle's activation is later triggered.
 </ul>
 <i></i>
 <li>This bundle's state is set to <code>STARTING</code>.
 
 <li>A bundle event of type <A HREF="../../../org/osgi/framework/BundleEvent.html#STARTING"><CODE>BundleEvent.STARTING</CODE></A> is fired.
 
 <li>The <A HREF="../../../org/osgi/framework/BundleActivator.html#start(org.osgi.framework.BundleContext)"><CODE>BundleActivator.start(org.osgi.framework.BundleContext)</CODE></A> method of this bundle's
 <code>BundleActivator</code>, if one is specified, is called. If the
 <code>BundleActivator</code> is invalid or throws an exception then:
 <ul>
 <li>This bundle's state is set to <code>STOPPING</code>.
 <li>A bundle event of type <A HREF="../../../org/osgi/framework/BundleEvent.html#STOPPING"><CODE>BundleEvent.STOPPING</CODE></A> is fired.
 <li>Any services registered by this bundle must be unregistered.
 <li>Any services used by this bundle must be released.
 <li>Any listeners registered by this bundle must be removed.
 <li>This bundle's state is set to <code>RESOLVED</code>.
 <li>A bundle event of type <A HREF="../../../org/osgi/framework/BundleEvent.html#STOPPED"><CODE>BundleEvent.STOPPED</CODE></A> is fired.
 <li>A <code>BundleException</code> is then thrown.
 </ul>
 <i></i>
 <li>If this bundle's state is <code>UNINSTALLED</code>, because this bundle
 was uninstalled while the <code>BundleActivator.start</code> method was
 running, a <code>BundleException</code> is thrown.
 
 <li>This bundle's state is set to <code>ACTIVE</code>.
 
 <li>A bundle event of type <A HREF="../../../org/osgi/framework/BundleEvent.html#STARTED"><CODE>BundleEvent.STARTED</CODE></A> is fired.
 </ol>
 
 <b>Preconditions </b>
 <ul>
 <li><code>getState()</code> in &#x007B; <code>INSTALLED</code>, <code>RESOLVED</code>
 &#x007D; or &#x007B; <code>INSTALLED</code>, <code>RESOLVED</code>,
 <code>STARTING</code> &#x007D; if this bundle has a lazy activation policy.
 </ul>
 <b>Postconditions, no exceptions thrown </b>
 <ul>
 <li>Bundle autostart setting is modified unless the
 <A HREF="../../../org/osgi/framework/Bundle.html#START_TRANSIENT"><CODE>START_TRANSIENT</CODE></A> option was set.
 <li><code>getState()</code> in &#x007B; <code>ACTIVE</code> &#x007D; unless the
 lazy activation policy was used.
 <li><code>BundleActivator.start()</code> has been called and did not throw an
 exception unless the lazy activation policy was used.
 </ul>
 <b>Postconditions, when an exception is thrown </b>
 <ul>
 <li>Depending on when the exception occurred, bundle autostart setting is
 modified unless the <A HREF="../../../org/osgi/framework/Bundle.html#START_TRANSIENT"><CODE>START_TRANSIENT</CODE></A> option was set.
 <li><code>getState()</code> not in &#x007B; <code>STARTING</code>, <code>ACTIVE</code>
 &#x007D;.
 </ul>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>options</CODE> - The options for starting this bundle. See
        <A HREF="../../../org/osgi/framework/Bundle.html#START_TRANSIENT"><CODE>START_TRANSIENT</CODE></A> and <A HREF="../../../org/osgi/framework/Bundle.html#START_ACTIVATION_POLICY"><CODE>START_ACTIVATION_POLICY</CODE></A>. The
        Framework must ignore unrecognized options.
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></CODE> - If this bundle could not be started.
         BundleException types thrown by this method include:
         <A HREF="../../../org/osgi/framework/BundleException.html#START_TRANSIENT_ERROR"><CODE>BundleException.START_TRANSIENT_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#NATIVECODE_ERROR"><CODE>BundleException.NATIVECODE_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#RESOLVE_ERROR"><CODE>BundleException.RESOLVE_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><CODE>BundleException.STATECHANGE_ERROR</CODE></A>, and
         <A HREF="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><CODE>BundleException.ACTIVATOR_ERROR</CODE></A>.
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled or this
         bundle tries to change its own state.
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,EXECUTE]</code>, and the Java Runtime
         Environment supports permissions.<DT><B>Since:</B></DT>
  <DD>1.4</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="start()"><!-- --></A><H3>
start</H3>
<PRE>
void <B>start</B>()
           throws <A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></PRE>
<DL>
<DD>Starts this bundle with no options.
 
 <p>
 This method performs the same function as calling <code>start(0)</code>.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></CODE> - If this bundle could not be started.
         BundleException types thrown by this method include:
         <A HREF="../../../org/osgi/framework/BundleException.html#NATIVECODE_ERROR"><CODE>BundleException.NATIVECODE_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#RESOLVE_ERROR"><CODE>BundleException.RESOLVE_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><CODE>BundleException.STATECHANGE_ERROR</CODE></A>, and
         <A HREF="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><CODE>BundleException.ACTIVATOR_ERROR</CODE></A>.
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled or this
         bundle tries to change its own state.
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,EXECUTE]</code>, and the Java Runtime
         Environment supports permissions.<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#start(int)"><CODE>start(int)</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="stop(int)"><!-- --></A><H3>
stop</H3>
<PRE>
void <B>stop</B>(int&nbsp;options)
          throws <A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></PRE>
<DL>
<DD>Stops this bundle.
 
 <p>
 The following steps are required to stop a bundle:
 <ol>
 <li>If this bundle's state is <code>UNINSTALLED</code> then an
 <code>IllegalStateException</code> is thrown.
 
 <li>If this bundle is in the process of being activated or deactivated
 then this method must wait for activation or deactivation to complete
 before continuing. If this does not occur in a reasonable time, a
 <code>BundleException</code> is thrown to indicate this bundle was unable to
 be stopped.
 <li>If the <A HREF="../../../org/osgi/framework/Bundle.html#STOP_TRANSIENT"><CODE>STOP_TRANSIENT</CODE></A> option is not set then then set this
 bundle's persistent autostart setting to to <em>Stopped</em>. When the
 Framework is restarted and this bundle's autostart setting is
 <em>Stopped</em>, this bundle must not be automatically started.
 
 <li>If this bundle's state is not <code>STARTING</code> or <code>ACTIVE</code> then
 this method returns immediately.
 
 <li>This bundle's state is set to <code>STOPPING</code>.
 
 <li>A bundle event of type <A HREF="../../../org/osgi/framework/BundleEvent.html#STOPPING"><CODE>BundleEvent.STOPPING</CODE></A> is fired.
 
 <li>If this bundle's state was <code>ACTIVE</code> prior to setting the state
 to <code>STOPPING</code>, the <A HREF="../../../org/osgi/framework/BundleActivator.html#stop(org.osgi.framework.BundleContext)"><CODE>BundleActivator.stop(org.osgi.framework.BundleContext)</CODE></A> method of this
 bundle's <code>BundleActivator</code>, if one is specified, is called. If that
 method throws an exception, this method must continue to stop this bundle
 and a <code>BundleException</code> must be thrown after completion of the
 remaining steps.
 
 <li>Any services registered by this bundle must be unregistered.
 <li>Any services used by this bundle must be released.
 <li>Any listeners registered by this bundle must be removed.
 
 <li>If this bundle's state is <code>UNINSTALLED</code>, because this bundle
 was uninstalled while the <code>BundleActivator.stop</code> method was
 running, a <code>BundleException</code> must be thrown.
 
 <li>This bundle's state is set to <code>RESOLVED</code>.
 
 <li>A bundle event of type <A HREF="../../../org/osgi/framework/BundleEvent.html#STOPPED"><CODE>BundleEvent.STOPPED</CODE></A> is fired.
 </ol>
 
 <b>Preconditions </b>
 <ul>
 <li><code>getState()</code> in &#x007B; <code>ACTIVE</code> &#x007D;.
 </ul>
 <b>Postconditions, no exceptions thrown </b>
 <ul>
 <li>Bundle autostart setting is modified unless the
 <A HREF="../../../org/osgi/framework/Bundle.html#STOP_TRANSIENT"><CODE>STOP_TRANSIENT</CODE></A> option was set.
 <li><code>getState()</code> not in &#x007B; <code>ACTIVE</code>, <code>STOPPING</code>
 &#x007D;.
 <li><code>BundleActivator.stop</code> has been called and did not throw an
 exception.
 </ul>
 <b>Postconditions, when an exception is thrown </b>
 <ul>
 <li>Bundle autostart setting is modified unless the
 <A HREF="../../../org/osgi/framework/Bundle.html#STOP_TRANSIENT"><CODE>STOP_TRANSIENT</CODE></A> option was set.
 </ul>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>options</CODE> - The options for stopping this bundle. See
        <A HREF="../../../org/osgi/framework/Bundle.html#STOP_TRANSIENT"><CODE>STOP_TRANSIENT</CODE></A>. The Framework must ignore unrecognized
        options.
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></CODE> - BundleException types thrown by this method
         include: <A HREF="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><CODE>BundleException.STATECHANGE_ERROR</CODE></A> and
         <A HREF="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><CODE>BundleException.ACTIVATOR_ERROR</CODE></A>.
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled or this
         bundle tries to change its own state.
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,EXECUTE]</code>, and the Java Runtime
         Environment supports permissions.<DT><B>Since:</B></DT>
  <DD>1.4</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="stop()"><!-- --></A><H3>
stop</H3>
<PRE>
void <B>stop</B>()
          throws <A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></PRE>
<DL>
<DD>Stops this bundle with no options.
 
 <p>
 This method performs the same function as calling <code>stop(0)</code>.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></CODE> - BundleException types thrown by this method
         include: <A HREF="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><CODE>BundleException.STATECHANGE_ERROR</CODE></A> and
         <A HREF="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><CODE>BundleException.ACTIVATOR_ERROR</CODE></A>.
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled or this
         bundle tries to change its own state.
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,EXECUTE]</code>, and the Java Runtime
         Environment supports permissions.<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#start(int)"><CODE>start(int)</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="update(java.io.InputStream)"><!-- --></A><H3>
update</H3>
<PRE>
void <B>update</B>(java.io.InputStream&nbsp;input)
            throws <A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></PRE>
<DL>
<DD>Updates this bundle from an <code>InputStream</code>.
 
 <p>
 If the specified <code>InputStream</code> is <code>null</code>, the Framework must
 create the <code>InputStream</code> from which to read the updated bundle by
 interpreting, in an implementation dependent manner, this bundle's
 <A HREF="../../../org/osgi/framework/Constants.html#BUNDLE_UPDATELOCATION"><CODE>Bundle-UpdateLocation</CODE></A> Manifest
 header, if present, or this bundle's original location.
 
 <p>
 If this bundle's state is <code>ACTIVE</code>, it must be stopped before the
 update and started after the update successfully completes.
 
 <p>
 If this bundle has exported any packages that are imported by another
 bundle, these packages must remain exported until the
 <A HREF="../../../org/osgi/framework/wiring/FrameworkWiring.html#refreshBundles(java.util.Collection, org.osgi.framework.FrameworkListener...)"><CODE>FrameworkWiring.refreshBundles</CODE></A> method has been has been called or the
 Framework is relaunched.
 
 <p>
 The following steps are required to update a bundle:
 <ol>
 <li>If this bundle's state is <code>UNINSTALLED</code> then an
 <code>IllegalStateException</code> is thrown.
 
 <li>If this bundle's state is <code>ACTIVE</code>, <code>STARTING</code> or
 <code>STOPPING</code>, this bundle is stopped as described in the
 <code>Bundle.stop</code> method. If <code>Bundle.stop</code> throws an exception,
 the exception is rethrown terminating the update.
 
 <li>The updated version of this bundle is read from the input stream and
 installed. If the Framework is unable to install the updated version of
 this bundle, the original version of this bundle must be restored and a
 <code>BundleException</code> must be thrown after completion of the remaining
 steps.
 
 <li>This bundle's state is set to <code>INSTALLED</code>.
 
 <li>If the updated version of this bundle was successfully installed, a
 bundle event of type <A HREF="../../../org/osgi/framework/BundleEvent.html#UPDATED"><CODE>BundleEvent.UPDATED</CODE></A> is fired.
 
 <li>If this bundle's state was originally <code>ACTIVE</code>, the updated
 bundle is started as described in the <code>Bundle.start</code> method. If
 <code>Bundle.start</code> throws an exception, a Framework event of type
 <A HREF="../../../org/osgi/framework/FrameworkEvent.html#ERROR"><CODE>FrameworkEvent.ERROR</CODE></A> is fired containing the exception.
 </ol>
 
 <b>Preconditions </b>
 <ul>
 <li><code>getState()</code> not in &#x007B; <code>UNINSTALLED</code> &#x007D;.
 </ul>
 <b>Postconditions, no exceptions thrown </b>
 <ul>
 <li><code>getState()</code> in &#x007B; <code>INSTALLED</code>, <code>RESOLVED</code>,
 <code>ACTIVE</code> &#x007D;.
 <li>This bundle has been updated.
 </ul>
 <b>Postconditions, when an exception is thrown </b>
 <ul>
 <li><code>getState()</code> in &#x007B; <code>INSTALLED</code>, <code>RESOLVED</code>,
 <code>ACTIVE</code> &#x007D;.
 <li>Original bundle is still used; no update occurred.
 </ul>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>input</CODE> - The <code>InputStream</code> from which to read the new bundle or
        <code>null</code> to indicate the Framework must create the input
        stream from this bundle's <A HREF="../../../org/osgi/framework/Constants.html#BUNDLE_UPDATELOCATION"><CODE>Bundle-UpdateLocation</CODE></A> Manifest header, if present, or this
        bundle's original location. The input stream must always be closed
        when this method completes, even if an exception is thrown.
<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></CODE> - If this bundle could not be updated.
         BundleException types thrown by this method include:
         <A HREF="../../../org/osgi/framework/BundleException.html#READ_ERROR"><CODE>BundleException.READ_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#DUPLICATE_BUNDLE_ERROR"><CODE>BundleException.DUPLICATE_BUNDLE_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#MANIFEST_ERROR"><CODE>BundleException.MANIFEST_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#NATIVECODE_ERROR"><CODE>BundleException.NATIVECODE_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#RESOLVE_ERROR"><CODE>BundleException.RESOLVE_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><CODE>BundleException.STATECHANGE_ERROR</CODE></A>, and
         <A HREF="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><CODE>BundleException.ACTIVATOR_ERROR</CODE></A>.
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled or this
         bundle tries to change its own state.
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,LIFECYCLE]</code> for both the current
         bundle and the updated bundle, and the Java Runtime Environment
         supports permissions.<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#stop()"><CODE>stop()</CODE></A>, 
<A HREF="../../../org/osgi/framework/Bundle.html#start()"><CODE>start()</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="update()"><!-- --></A><H3>
update</H3>
<PRE>
void <B>update</B>()
            throws <A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></PRE>
<DL>
<DD>Updates this bundle.
 
 <p>
 This method performs the same function as calling
 <A HREF="../../../org/osgi/framework/Bundle.html#update(java.io.InputStream)"><CODE>update(InputStream)</CODE></A> with a <code>null</code> InputStream.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></CODE> - If this bundle could not be updated.
         BundleException types thrown by this method include:
         <A HREF="../../../org/osgi/framework/BundleException.html#READ_ERROR"><CODE>BundleException.READ_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#DUPLICATE_BUNDLE_ERROR"><CODE>BundleException.DUPLICATE_BUNDLE_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#MANIFEST_ERROR"><CODE>BundleException.MANIFEST_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#NATIVECODE_ERROR"><CODE>BundleException.NATIVECODE_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#RESOLVE_ERROR"><CODE>BundleException.RESOLVE_ERROR</CODE></A>,
         <A HREF="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><CODE>BundleException.STATECHANGE_ERROR</CODE></A>, and
         <A HREF="../../../org/osgi/framework/BundleException.html#ACTIVATOR_ERROR"><CODE>BundleException.ACTIVATOR_ERROR</CODE></A>.
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled or this
         bundle tries to change its own state.
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,LIFECYCLE]</code> for both the current
         bundle and the updated bundle, and the Java Runtime Environment
         supports permissions.<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#update(java.io.InputStream)"><CODE>update(InputStream)</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="uninstall()"><!-- --></A><H3>
uninstall</H3>
<PRE>
void <B>uninstall</B>()
               throws <A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></PRE>
<DL>
<DD>Uninstalls this bundle.
 
 <p>
 This method causes the Framework to notify other bundles that this bundle
 is being uninstalled, and then puts this bundle into the
 <code>UNINSTALLED</code> state. The Framework must remove any resources
 related to this bundle that it is able to remove.
 
 <p>
 If this bundle has exported any packages, the Framework must continue to
 make these packages available to their importing bundles until the
 <A HREF="../../../org/osgi/framework/wiring/FrameworkWiring.html#refreshBundles(java.util.Collection, org.osgi.framework.FrameworkListener...)"><CODE>FrameworkWiring.refreshBundles</CODE></A> method has been called or the Framework
 is relaunched.
 
 <p>
 The following steps are required to uninstall a bundle:
 <ol>
 <li>If this bundle's state is <code>UNINSTALLED</code> then an
 <code>IllegalStateException</code> is thrown.
 
 <li>If this bundle's state is <code>ACTIVE</code>, <code>STARTING</code> or
 <code>STOPPING</code>, this bundle is stopped as described in the
 <code>Bundle.stop</code> method. If <code>Bundle.stop</code> throws an exception, a
 Framework event of type <A HREF="../../../org/osgi/framework/FrameworkEvent.html#ERROR"><CODE>FrameworkEvent.ERROR</CODE></A> is fired containing
 the exception.
 
 <li>This bundle's state is set to <code>UNINSTALLED</code>.
 
 <li>A bundle event of type <A HREF="../../../org/osgi/framework/BundleEvent.html#UNINSTALLED"><CODE>BundleEvent.UNINSTALLED</CODE></A> is fired.
 
 <li>This bundle and any persistent storage area provided for this bundle
 by the Framework are removed.
 </ol>
 
 <b>Preconditions </b>
 <ul>
 <li><code>getState()</code> not in &#x007B; <code>UNINSTALLED</code> &#x007D;.
 </ul>
 <b>Postconditions, no exceptions thrown </b>
 <ul>
 <li><code>getState()</code> in &#x007B; <code>UNINSTALLED</code> &#x007D;.
 <li>This bundle has been uninstalled.
 </ul>
 <b>Postconditions, when an exception is thrown </b>
 <ul>
 <li><code>getState()</code> not in &#x007B; <code>UNINSTALLED</code> &#x007D;.
 <li>This Bundle has not been uninstalled.
 </ul>
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Throws:</B>
<DD><CODE><A HREF="../../../org/osgi/framework/BundleException.html" title="class in org.osgi.framework">BundleException</A></CODE> - If the uninstall failed. This can occur if
         another thread is attempting to change this bundle's state and
         does not complete in a timely manner. BundleException types
         thrown by this method include:
         <A HREF="../../../org/osgi/framework/BundleException.html#STATECHANGE_ERROR"><CODE>BundleException.STATECHANGE_ERROR</CODE></A>
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled or this
         bundle tries to change its own state.
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,LIFECYCLE]</code>, and the Java Runtime
         Environment supports permissions.<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#stop()"><CODE>stop()</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="getHeaders()"><!-- --></A><H3>
getHeaders</H3>
<PRE>
java.util.Dictionary&lt;java.lang.String,java.lang.String&gt; <B>getHeaders</B>()</PRE>
<DL>
<DD>Returns this bundle's Manifest headers and values. This method returns
 all the Manifest headers and values from the main section of this
 bundle's Manifest file; that is, all lines prior to the first blank line.
 
 <p>
 Manifest header names are case-insensitive. The methods of the returned
 <code>Dictionary</code> object must operate on header names in a
 case-insensitive manner.
 
 If a Manifest header value starts with &quot;%&quot;, it must be
 localized according to the default locale. If no localization is found
 for a header value, the header value without the leading &quot;%&quot; is
 returned.
 
 <p>
 For example, the following Manifest headers and values are included if
 they are present in the Manifest file:
 
 <pre>
     Bundle-Name
     Bundle-Vendor
     Bundle-Version
     Bundle-Description
     Bundle-DocURL
     Bundle-ContactAddress
 </pre>
 
 <p>
 This method must continue to return Manifest header information while
 this bundle is in the <code>UNINSTALLED</code> state.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Returns:</B><DD>An unmodifiable <code>Dictionary</code> object containing this
         bundle's Manifest headers and values.
<DT><B>Throws:</B>
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,METADATA]</code>, and the Java Runtime
         Environment supports permissions.<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Constants.html#BUNDLE_LOCALIZATION"><CODE>Constants.BUNDLE_LOCALIZATION</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="getBundleId()"><!-- --></A><H3>
getBundleId</H3>
<PRE>
long <B>getBundleId</B>()</PRE>
<DL>
<DD>Returns this bundle's unique identifier. This bundle is assigned a unique
 identifier by the Framework when it was installed in the OSGi
 environment.
 
 <p>
 A bundle's unique identifier has the following attributes:
 <ul>
 <li>Is unique and persistent.
 <li>Is a <code>long</code>.
 <li>Its value is not reused for another bundle, even after a bundle is
 uninstalled.
 <li>Does not change while a bundle remains installed.
 <li>Does not change when a bundle is updated.
 </ul>
 
 <p>
 This method must continue to return this bundle's unique identifier while
 this bundle is in the <code>UNINSTALLED</code> state.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Returns:</B><DD>The unique identifier of this bundle.</DL>
</DD>
</DL>
<HR>

<A NAME="getLocation()"><!-- --></A><H3>
getLocation</H3>
<PRE>
java.lang.String <B>getLocation</B>()</PRE>
<DL>
<DD>Returns this bundle's location identifier.
 
 <p>
 The location identifier is the location passed to <code>BundleContext.installBundle</code> when a bundle is installed. The location
 identifier does not change while this bundle remains installed, even if
 this bundle is updated.
 
 <p>
 This method must continue to return this bundle's location identifier
 while this bundle is in the <code>UNINSTALLED</code> state.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Returns:</B><DD>The string representation of this bundle's location identifier.
<DT><B>Throws:</B>
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,METADATA]</code>, and the Java Runtime
         Environment supports permissions.</DL>
</DD>
</DL>
<HR>

<A NAME="getRegisteredServices()"><!-- --></A><H3>
getRegisteredServices</H3>
<PRE>
<A HREF="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework">ServiceReference</A>&lt;?&gt;[] <B>getRegisteredServices</B>()</PRE>
<DL>
<DD>Returns this bundle's <code>ServiceReference</code> list for all services it
 has registered or <code>null</code> if this bundle has no registered services.
 
 <p>
 If the Java runtime supports permissions, a <code>ServiceReference</code>
 object to a service is included in the returned list only if the caller
 has the <code>ServicePermission</code> to get the service using at least one
 of the named classes the service was registered under.
 
 <p>
 The list is valid at the time of the call to this method, however, as the
 Framework is a very dynamic environment, services can be modified or
 unregistered at anytime.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Returns:</B><DD>An array of <code>ServiceReference</code> objects or <code>null</code>.
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled.<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/ServiceRegistration.html" title="interface in org.osgi.framework"><CODE>ServiceRegistration</CODE></A>, 
<A HREF="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework"><CODE>ServiceReference</CODE></A>, 
<A HREF="../../../org/osgi/framework/ServicePermission.html" title="class in org.osgi.framework"><CODE>ServicePermission</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="getServicesInUse()"><!-- --></A><H3>
getServicesInUse</H3>
<PRE>
<A HREF="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework">ServiceReference</A>&lt;?&gt;[] <B>getServicesInUse</B>()</PRE>
<DL>
<DD>Returns this bundle's <code>ServiceReference</code> list for all services it
 is using or returns <code>null</code> if this bundle is not using any
 services. A bundle is considered to be using a service if its use count
 for that service is greater than zero.
 
 <p>
 If the Java Runtime Environment supports permissions, a <code>ServiceReference</code> object to a service is included in the returned list
 only if the caller has the <code>ServicePermission</code> to get the service
 using at least one of the named classes the service was registered under.
 <p>
 The list is valid at the time of the call to this method, however, as the
 Framework is a very dynamic environment, services can be modified or
 unregistered at anytime.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Returns:</B><DD>An array of <code>ServiceReference</code> objects or <code>null</code>.
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled.<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/ServiceReference.html" title="interface in org.osgi.framework"><CODE>ServiceReference</CODE></A>, 
<A HREF="../../../org/osgi/framework/ServicePermission.html" title="class in org.osgi.framework"><CODE>ServicePermission</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="hasPermission(java.lang.Object)"><!-- --></A><H3>
hasPermission</H3>
<PRE>
boolean <B>hasPermission</B>(java.lang.Object&nbsp;permission)</PRE>
<DL>
<DD>Determines if this bundle has the specified permissions.
 
 <p>
 If the Java Runtime Environment does not support permissions, this method
 always returns <code>true</code>.
 <p>
 <code>permission</code> is of type <code>Object</code> to avoid referencing the
 <code>java.security.Permission</code> class directly. This is to allow the
 Framework to be implemented in Java environments which do not support
 permissions.
 
 <p>
 If the Java Runtime Environment does support permissions, this bundle and
 all its resources including embedded JAR files, belong to the same
 <code>java.security.ProtectionDomain</code>; that is, they must share the same
 set of permissions.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>permission</CODE> - The permission to verify.
<DT><B>Returns:</B><DD><code>true</code> if this bundle has the specified permission or the
         permissions possessed by this bundle imply the specified
         permission; <code>false</code> if this bundle does not have the
         specified permission or <code>permission</code> is not an <code>instanceof</code> <code>java.security.Permission</code>.
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled.</DL>
</DD>
</DL>
<HR>

<A NAME="getResource(java.lang.String)"><!-- --></A><H3>
getResource</H3>
<PRE>
java.net.URL <B>getResource</B>(java.lang.String&nbsp;name)</PRE>
<DL>
<DD>Find the specified resource from this bundle's class loader.
 
 This bundle's class loader is called to search for the specified
 resource. If this bundle's state is <code>INSTALLED</code>, this method must
 attempt to resolve this bundle before attempting to get the specified
 resource. If this bundle cannot be resolved, then only this bundle must
 be searched for the specified resource. Imported packages cannot be
 searched when this bundle has not been resolved. If this bundle is a
 fragment bundle then <code>null</code> is returned.
 <p>
 Note: Jar and zip files are not required to include directory entries.
 URLs to directory entries will not be returned if the bundle contents do
 not contain directory entries.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - The name of the resource. See <code>ClassLoader.getResource</code>
        for a description of the format of a resource name.
<DT><B>Returns:</B><DD>A URL to the named resource, or <code>null</code> if the resource
         could not be found or if this bundle is a fragment bundle or if
         the caller does not have the appropriate <code>AdminPermission[this,RESOURCE]</code>, and the Java Runtime Environment
         supports permissions.
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled.<DT><B>Since:</B></DT>
  <DD>1.1</DD>
<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#getEntry(java.lang.String)"><CODE>getEntry(java.lang.String)</CODE></A>, 
<A HREF="../../../org/osgi/framework/Bundle.html#findEntries(java.lang.String, java.lang.String, boolean)"><CODE>findEntries(java.lang.String, java.lang.String, boolean)</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="getHeaders(java.lang.String)"><!-- --></A><H3>
getHeaders</H3>
<PRE>
java.util.Dictionary&lt;java.lang.String,java.lang.String&gt; <B>getHeaders</B>(java.lang.String&nbsp;locale)</PRE>
<DL>
<DD>Returns this bundle's Manifest headers and values localized to the
 specified locale.
 
 <p>
 This method performs the same function as <code>Bundle.getHeaders()</code>
 except the manifest header values are localized to the specified locale.
 
 <p>
 If a Manifest header value starts with &quot;%&quot;, it must be
 localized according to the specified locale. If a locale is specified and
 cannot be found, then the header values must be returned using the
 default locale. Localizations are searched for in the following order:
 
 <pre>
   bn + &quot;_&quot; + Ls + &quot;_&quot; + Cs + &quot;_&quot; + Vs
   bn + &quot;_&quot; + Ls + &quot;_&quot; + Cs
   bn + &quot;_&quot; + Ls
   bn + &quot;_&quot; + Ld + &quot;_&quot; + Cd + &quot;_&quot; + Vd
   bn + &quot;_&quot; + Ld + &quot;_&quot; + Cd
   bn + &quot;_&quot; + Ld
   bn
 </pre>
 
 Where <code>bn</code> is this bundle's localization basename, <code>Ls</code>,
 <code>Cs</code> and <code>Vs</code> are the specified locale (language, country,
 variant) and <code>Ld</code>, <code>Cd</code> and <code>Vd</code> are the default locale
 (language, country, variant).
 
 If <code>null</code> is specified as the locale string, the header values must
 be localized using the default locale. If the empty string (&quot;&quot;)
 is specified as the locale string, the header values must not be
 localized and the raw (unlocalized) header values, including any leading
 &quot;%&quot;, must be returned. If no localization is found for a header
 value, the header value without the leading &quot;%&quot; is returned.
 
 <p>
 This method must continue to return Manifest header information while
 this bundle is in the <code>UNINSTALLED</code> state, however the header
 values must only be available in the raw and default locale values.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>locale</CODE> - The locale name into which the header values are to be
        localized. If the specified locale is <code>null</code> then the locale
        returned by <code>java.util.Locale.getDefault</code> is used. If the
        specified locale is the empty string, this method will return the
        raw (unlocalized) manifest headers including any leading
        &quot;%&quot;.
<DT><B>Returns:</B><DD>An unmodifiable <code>Dictionary</code> object containing this
         bundle's Manifest headers and values.
<DT><B>Throws:</B>
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,METADATA]</code>, and the Java Runtime
         Environment supports permissions.<DT><B>Since:</B></DT>
  <DD>1.3</DD>
<DT><B>See Also:</B><DD><A HREF="../../../org/osgi/framework/Bundle.html#getHeaders()"><CODE>getHeaders()</CODE></A>, 
<A HREF="../../../org/osgi/framework/Constants.html#BUNDLE_LOCALIZATION"><CODE>Constants.BUNDLE_LOCALIZATION</CODE></A></DL>
</DD>
</DL>
<HR>

<A NAME="getSymbolicName()"><!-- --></A><H3>
getSymbolicName</H3>
<PRE>
java.lang.String <B>getSymbolicName</B>()</PRE>
<DL>
<DD>Returns the symbolic name of this bundle as specified by its <code>Bundle-SymbolicName</code> manifest header. The bundle symbolic name should be
 based on the reverse domain name naming convention like that used for
 java packages.
 
 <p>
 This method must continue to return this bundle's symbolic name while
 this bundle is in the <code>UNINSTALLED</code> state.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Returns:</B><DD>The symbolic name of this bundle or <code>null</code> if this bundle
         does not have a symbolic name.<DT><B>Since:</B></DT>
  <DD>1.3</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="loadClass(java.lang.String)"><!-- --></A><H3>
loadClass</H3>
<PRE>
java.lang.Class&lt;?&gt; <B>loadClass</B>(java.lang.String&nbsp;name)
                             throws java.lang.ClassNotFoundException</PRE>
<DL>
<DD>Loads the specified class using this bundle's class loader.
 
 <p>
 If this bundle is a fragment bundle then this method must throw a <code>ClassNotFoundException</code>.
 
 <p>
 If this bundle's state is <code>INSTALLED</code>, this method must attempt to
 resolve this bundle before attempting to load the class.
 
 <p>
 If this bundle cannot be resolved, a Framework event of type
 <A HREF="../../../org/osgi/framework/FrameworkEvent.html#ERROR"><CODE>FrameworkEvent.ERROR</CODE></A> is fired containing a <code>BundleException</code> with details of the reason this bundle could not be
 resolved. This method must then throw a <code>ClassNotFoundException</code>.
 
 <p>
 If this bundle's state is <code>UNINSTALLED</code>, then an <code>IllegalStateException</code> is thrown.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - The name of the class to load.
<DT><B>Returns:</B><DD>The Class object for the requested class.
<DT><B>Throws:</B>
<DD><CODE>java.lang.ClassNotFoundException</CODE> - If no such class can be found or if this
         bundle is a fragment bundle or if the caller does not have the
         appropriate <code>AdminPermission[this,CLASS]</code>, and the Java
         Runtime Environment supports permissions.
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled.<DT><B>Since:</B></DT>
  <DD>1.3</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="getResources(java.lang.String)"><!-- --></A><H3>
getResources</H3>
<PRE>
java.util.Enumeration&lt;java.net.URL&gt; <B>getResources</B>(java.lang.String&nbsp;name)
                                                 throws java.io.IOException</PRE>
<DL>
<DD>Find the specified resources from this bundle's class loader.
 
 This bundle's class loader is called to search for the specified
 resources. If this bundle's state is <code>INSTALLED</code>, this method must
 attempt to resolve this bundle before attempting to get the specified
 resources. If this bundle cannot be resolved, then only this bundle must
 be searched for the specified resources. Imported packages cannot be
 searched when a bundle has not been resolved. If this bundle is a
 fragment bundle then <code>null</code> is returned.
 <p>
 Note: Jar and zip files are not required to include directory entries.
 URLs to directory entries will not be returned if the bundle contents do
 not contain directory entries.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>name</CODE> - The name of the resource. See <code>ClassLoader.getResources</code> for a description of the format of a
        resource name.
<DT><B>Returns:</B><DD>An enumeration of URLs to the named resources, or <code>null</code> if
         the resource could not be found or if this bundle is a fragment
         bundle or if the caller does not have the appropriate <code>AdminPermission[this,RESOURCE]</code>, and the Java Runtime Environment
         supports permissions.
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled.
<DD><CODE>java.io.IOException</CODE> - If there is an I/O error.<DT><B>Since:</B></DT>
  <DD>1.3</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="getEntryPaths(java.lang.String)"><!-- --></A><H3>
getEntryPaths</H3>
<PRE>
java.util.Enumeration&lt;java.lang.String&gt; <B>getEntryPaths</B>(java.lang.String&nbsp;path)</PRE>
<DL>
<DD>Returns an Enumeration of all the paths (<code>String</code> objects) to
 entries within this bundle whose longest sub-path matches the specified
 path. This bundle's class loader is not used to search for entries. Only
 the contents of this bundle are searched.
 <p>
 The specified path is always relative to the root of this bundle and may
 begin with a &quot;/&quot;. A path value of &quot;/&quot; indicates the
 root of this bundle.
 <p>
 Returned paths indicating subdirectory paths end with a &quot;/&quot;.
 The returned paths are all relative to the root of this bundle and must
 not begin with &quot;/&quot;.
 <p>
 Note: Jar and zip files are not required to include directory entries.
 Paths to directory entries will not be returned if the bundle contents do
 not contain directory entries.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>path</CODE> - The path name for which to return entry paths.
<DT><B>Returns:</B><DD>An Enumeration of the entry paths (<code>String</code> objects) or
         <code>null</code> if no entry could be found or if the caller does not
         have the appropriate <code>AdminPermission[this,RESOURCE]</code> and
         the Java Runtime Environment supports permissions.
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled.<DT><B>Since:</B></DT>
  <DD>1.3</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="getEntry(java.lang.String)"><!-- --></A><H3>
getEntry</H3>
<PRE>
java.net.URL <B>getEntry</B>(java.lang.String&nbsp;path)</PRE>
<DL>
<DD>Returns a URL to the entry at the specified path in this bundle. This
 bundle's class loader is not used to search for the entry. Only the
 contents of this bundle are searched for the entry.
 <p>
 The specified path is always relative to the root of this bundle and may
 begin with &quot;/&quot;. A path value of &quot;/&quot; indicates the
 root of this bundle.
 <p>
 Note: Jar and zip files are not required to include directory entries.
 URLs to directory entries will not be returned if the bundle contents do
 not contain directory entries.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>path</CODE> - The path name of the entry.
<DT><B>Returns:</B><DD>A URL to the entry, or <code>null</code> if no entry could be found or
         if the caller does not have the appropriate <code>AdminPermission[this,RESOURCE]</code> and the Java Runtime Environment
         supports permissions.
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled.<DT><B>Since:</B></DT>
  <DD>1.3</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="getLastModified()"><!-- --></A><H3>
getLastModified</H3>
<PRE>
long <B>getLastModified</B>()</PRE>
<DL>
<DD>Returns the time when this bundle was last modified. A bundle is
 considered to be modified when it is installed, updated or uninstalled.
 
 <p>
 The time value is the number of milliseconds since January 1, 1970,
 00:00:00 GMT.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Returns:</B><DD>The time when this bundle was last modified.<DT><B>Since:</B></DT>
  <DD>1.3</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="findEntries(java.lang.String, java.lang.String, boolean)"><!-- --></A><H3>
findEntries</H3>
<PRE>
java.util.Enumeration&lt;java.net.URL&gt; <B>findEntries</B>(java.lang.String&nbsp;path,
                                                java.lang.String&nbsp;filePattern,
                                                boolean&nbsp;recurse)</PRE>
<DL>
<DD>Returns entries in this bundle and its attached fragments. This bundle's
 class loader is not used to search for entries. Only the contents of this
 bundle and its attached fragments are searched for the specified entries.
 
 If this bundle's state is <code>INSTALLED</code>, this method must attempt to
 resolve this bundle before attempting to find entries.
 
 <p>
 This method is intended to be used to obtain configuration, setup,
 localization and other information from this bundle. This method takes
 into account that the &quot;contents&quot; of this bundle can be extended
 with fragments. This &quot;bundle space&quot; is not a name space with
 unique members; the same entry name can be present multiple times. This
 method therefore returns an enumeration of URL objects. These URLs can
 come from different JARs but have the same path name. This method can
 either return only entries in the specified path or recurse into
 subdirectories returning entries in the directory tree beginning at the
 specified path. Fragments can be attached after this bundle is resolved,
 possibly changing the set of URLs returned by this method. If this bundle
 is not resolved, only the entries in the JAR file of this bundle are
 returned.
 <p>
 Examples:
 
 <pre>
 // List all XML files in the OSGI-INF directory and below
 Enumeration e = b.findEntries(&quot;OSGI-INF&quot;, &quot;*.xml&quot;, true);
 
 // Find a specific localization file
 Enumeration e = b
                .findEntries(&quot;OSGI-INF/l10n&quot;, &quot;bundle_nl_DU.properties&quot;, false);
 if (e.hasMoreElements())
        return (URL) e.nextElement();
 </pre>
 
 <p>
 Note: Jar and zip files are not required to include directory entries.
 URLs to directory entries will not be returned if the bundle contents do
 not contain directory entries.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>path</CODE> - The path name in which to look. The path is always relative
        to the root of this bundle and may begin with &quot;/&quot;. A
        path value of &quot;/&quot; indicates the root of this bundle.<DD><CODE>filePattern</CODE> - The file name pattern for selecting entries in the
        specified path. The pattern is only matched against the last
        element of the entry path. If the entry is a directory then the
        trailing &quot;/&quot; is not used for pattern matching. Substring
        matching is supported, as specified in the Filter specification,
        using the wildcard character (&quot;*&quot;). If null is
        specified, this is equivalent to &quot;*&quot; and matches all
        files.<DD><CODE>recurse</CODE> - If <code>true</code>, recurse into subdirectories. Otherwise
        only return entries from the specified path.
<DT><B>Returns:</B><DD>An enumeration of URL objects for each matching entry, or
         <code>null</code> if no matching entry could not be found or if the
         caller does not have the appropriate
         <code>AdminPermission[this,RESOURCE]</code>, and the Java Runtime
         Environment supports permissions. The URLs are sorted such that
         entries from this bundle are returned first followed by the
         entries from attached fragments in attachment order. If this
         bundle is a fragment, then only matching entries in this fragment
         are returned.
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled.<DT><B>Since:</B></DT>
  <DD>1.3</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="getBundleContext()"><!-- --></A><H3>
getBundleContext</H3>
<PRE>
<A HREF="../../../org/osgi/framework/BundleContext.html" title="interface in org.osgi.framework">BundleContext</A> <B>getBundleContext</B>()</PRE>
<DL>
<DD>Returns this bundle's <A HREF="../../../org/osgi/framework/BundleContext.html" title="interface in org.osgi.framework"><CODE>BundleContext</CODE></A>. The returned <code>BundleContext</code> can be used by the caller to act on behalf of this bundle.
 
 <p>
 If this bundle is not in the <A HREF="../../../org/osgi/framework/Bundle.html#STARTING"><CODE>STARTING</CODE></A>, <A HREF="../../../org/osgi/framework/Bundle.html#ACTIVE"><CODE>ACTIVE</CODE></A>, or
 <A HREF="../../../org/osgi/framework/Bundle.html#STOPPING"><CODE>STOPPING</CODE></A> states or this bundle is a fragment bundle, then this
 bundle has no valid <code>BundleContext</code>. This method will return
 <code>null</code> if this bundle has no valid <code>BundleContext</code>.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Returns:</B><DD>A <code>BundleContext</code> for this bundle or <code>null</code> if this
         bundle has no valid <code>BundleContext</code>.
<DT><B>Throws:</B>
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdminPermission[this,CONTEXT]</code>, and the Java Runtime
         Environment supports permissions.<DT><B>Since:</B></DT>
  <DD>1.4</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="getSignerCertificates(int)"><!-- --></A><H3>
getSignerCertificates</H3>
<PRE>
java.util.Map&lt;java.security.cert.X509Certificate,java.util.List&lt;java.security.cert.X509Certificate&gt;&gt; <B>getSignerCertificates</B>(int&nbsp;signersType)</PRE>
<DL>
<DD>Return the certificates for the signers of this bundle and the
 certificate chains for those signers.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>signersType</CODE> - If <A HREF="../../../org/osgi/framework/Bundle.html#SIGNERS_ALL"><CODE>SIGNERS_ALL</CODE></A> is specified, then information
        on all signers of this bundle is returned. If
        <A HREF="../../../org/osgi/framework/Bundle.html#SIGNERS_TRUSTED"><CODE>SIGNERS_TRUSTED</CODE></A> is specified, then only information on
        the signers of this bundle trusted by the framework is returned.
<DT><B>Returns:</B><DD>The <code>X509Certificate</code>s for the signers of this bundle and
         the <code>X509Certificate</code> chains for those signers. The keys of
         the <code>Map</code> are the <code>X509Certificate</code>s of the signers
         of this bundle. The value for a key is a <code>List</code> containing
         the <code>X509Certificate</code> chain for the signer. The first item
         in the <code>List</code> is the signer's <code>X509Certificate</code> which
         is then followed by the rest of the <code>X509Certificate</code>
         chain. The returned <code>Map</code> will be empty if there are no
         signers. The returned <code>Map</code> is the property of the caller
         who is free to modify it.
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalArgumentException</CODE> - If the specified <code>signersType</code> is
         not <A HREF="../../../org/osgi/framework/Bundle.html#SIGNERS_ALL"><CODE>SIGNERS_ALL</CODE></A> or <A HREF="../../../org/osgi/framework/Bundle.html#SIGNERS_TRUSTED"><CODE>SIGNERS_TRUSTED</CODE></A>.<DT><B>Since:</B></DT>
  <DD>1.5</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="getVersion()"><!-- --></A><H3>
getVersion</H3>
<PRE>
<A HREF="../../../org/osgi/framework/Version.html" title="class in org.osgi.framework">Version</A> <B>getVersion</B>()</PRE>
<DL>
<DD>Returns the version of this bundle as specified by its <code>Bundle-Version</code> manifest header. If this bundle does not have a specified
 version then <A HREF="../../../org/osgi/framework/Version.html#emptyVersion"><CODE>Version.emptyVersion</CODE></A> is returned.
 
 <p>
 This method must continue to return this bundle's version while this
 bundle is in the <code>UNINSTALLED</code> state.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>

<DT><B>Returns:</B><DD>The version of this bundle.<DT><B>Since:</B></DT>
  <DD>1.5</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="adapt(java.lang.Class)"><!-- --></A><H3>
adapt</H3>
<PRE>
&lt;A&gt; A <B>adapt</B>(java.lang.Class&lt;A&gt;&nbsp;type)</PRE>
<DL>
<DD>Adapt this bundle to the specified type.
 
 <p>
 Adapting this bundle to the specified type may require certain checks,
 including security checks, to succeed. If a check does not succeed, then
 this bundle cannot be adapted and <code>null</code> is returned.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Type Parameters:</B><DD><CODE>A</CODE> - The type to which this bundle is to be adapted.<DT><B>Parameters:</B><DD><CODE>type</CODE> - Class object for the type to which this bundle is to be
        adapted.
<DT><B>Returns:</B><DD>The object, of the specified type, to which this bundle has been
         adapted or <code>null</code> if this bundle cannot be adapted to the
         specified type.
<DT><B>Throws:</B>
<DD><CODE>java.lang.SecurityException</CODE> - If the caller does not have the appropriate
         <code>AdaptPermission[type,this,ADAPT]</code>, and the Java Runtime
         Environment supports permissions.<DT><B>Since:</B></DT>
  <DD>1.6</DD>
</DL>
</DD>
</DL>
<HR>

<A NAME="getDataFile(java.lang.String)"><!-- --></A><H3>
getDataFile</H3>
<PRE>
java.io.File <B>getDataFile</B>(java.lang.String&nbsp;filename)</PRE>
<DL>
<DD>Creates a <code>File</code> object for a file in the persistent storage area
 provided for this bundle by the Framework. This method will return
 <code>null</code> if the platform does not have file system support or this
 bundle is a fragment bundle.
 
 <p>
 A <code>File</code> object for the base directory of the persistent storage
 area provided for this bundle by the Framework can be obtained by calling
 this method with an empty string as <code>filename</code>.
 
 <p>
 If the Java Runtime Environment supports permissions, the Framework will
 ensure that this bundle has the <code>java.io.FilePermission</code> with
 actions <code>read</code>,<code>write</code>,<code>delete</code> for all files
 (recursively) in the persistent storage area provided for this bundle.
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>filename</CODE> - A relative name to the file to be accessed.
<DT><B>Returns:</B><DD>A <code>File</code> object that represents the requested file or
         <code>null</code> if the platform does not have file system support or
         this bundle is a fragment bundle.
<DT><B>Throws:</B>
<DD><CODE>java.lang.IllegalStateException</CODE> - If this bundle has been uninstalled.<DT><B>Since:</B></DT>
  <DD>1.6</DD>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>


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

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;<A HREF="../../../org/osgi/framework/AllServiceListener.html" title="interface in org.osgi.framework"><B>PREV CLASS</B></A>&nbsp;
&nbsp;<A HREF="../../../org/osgi/framework/BundleActivator.html" title="interface in org.osgi.framework"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="../../../index.html?org/osgi/framework/Bundle.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="Bundle.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>


</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->

<HR>

</BODY>
</HTML>