创建新的ViewPart时,我无法获取图像描述符。调试代码我看到我无法获得我的插件的Bundle。
代码如下:
public class MyView extends ViewPart {
...
public void createPartControl(Composite parent) {
...
Bundle bundle = Platform.getBundle(MyPlugin.ID);
// The bundle is null at this point but is not null in other
// classes of my code
}
}
当我尝试获取Bundle
时,此时它为空。我不明白的是代码适用于我的代码的其他部分。
为什么我现在无法获得捆绑?