use of org.python.pydev.shared_ui.bundle.BundleInfo in project Pydev by fabioz.
the class SharedUiPlugin method getBundleInfo.
public static IBundleInfo getBundleInfo() {
if (SharedUiPlugin.info == null) {
SharedUiPlugin bundle = SharedUiPlugin.getDefault();
if (bundle == null) {
return null;
}
SharedUiPlugin.info = new BundleInfo(bundle.getBundle());
}
return SharedUiPlugin.info;
}
Aggregations