本文整理了Java中aQute.bnd.osgi.Analyzer.isImported()
方法的一些代码示例,展示了Analyzer.isImported()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Analyzer.isImported()
方法的具体详情如下:
包路径:aQute.bnd.osgi.Analyzer
类名称:Analyzer
方法名:isImported
暂无
代码示例来源:origin: biz.aQute/bndlib
private void verifyActivator() throws Exception {
String bactivator = main.get("Bundle-Activator");
if (bactivator != null) {
TypeRef ref = analyzer.getTypeRefFromFQN(bactivator);
if (analyzer.getClassspace().containsKey(ref))
return;
PackageRef packageRef = ref.getPackageRef();
if (packageRef.isDefaultPackage())
error("The Bundle Activator is not in the bundle and it is in the default package ");
else if (!analyzer.isImported(packageRef)) {
error("Bundle-Activator not found on the bundle class path nor in imports: " + bactivator);
}
}
}
代码示例来源:origin: biz.aQute.bnd/biz.aQute.bndlib
error("The Bundle Activator is not in the bundle and it is in the default package "), bactivator,
ActivatorErrorType.DEFAULT_PACKAGE);
else if (!analyzer.isImported(packageRef)) {
registerActivatorErrorLocation(
error(Constants.BUNDLE_ACTIVATOR + " not found on the bundle class path nor in imports: %s",
代码示例来源:origin: biz.aQute.bnd/biz.aQute.bnd
error("The Bundle Activator is not in the bundle and it is in the default package "), bactivator,
ActivatorErrorType.DEFAULT_PACKAGE);
else if (!analyzer.isImported(packageRef)) {
registerActivatorErrorLocation(
error(Constants.BUNDLE_ACTIVATOR + " not found on the bundle class path nor in imports: %s",
代码示例来源:origin: biz.aQute.bnd/bndlib
registerActivatorErrorLocation(error("The Bundle Activator is not in the bundle and it is in the default package "),
bactivator, ActivatorErrorType.DEFAULT_PACKAGE);
else if (!analyzer.isImported(packageRef)) {
registerActivatorErrorLocation(error(Constants.BUNDLE_ACTIVATOR +
" not found on the bundle class path nor in imports: " + bactivator),
代码示例来源:origin: biz.aQute.bnd/bnd
registerActivatorErrorLocation(error("The Bundle Activator is not in the bundle and it is in the default package "),
bactivator, ActivatorErrorType.DEFAULT_PACKAGE);
else if (!analyzer.isImported(packageRef)) {
registerActivatorErrorLocation(error(Constants.BUNDLE_ACTIVATOR +
" not found on the bundle class path nor in imports: " + bactivator),
内容来源于网络,如有侵权,请联系作者删除!