aQute.bnd.osgi.Analyzer.isImported()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(116)

本文整理了Java中aQute.bnd.osgi.Analyzer.isImported()方法的一些代码示例,展示了Analyzer.isImported()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Analyzer.isImported()方法的具体详情如下:
包路径:aQute.bnd.osgi.Analyzer
类名称:Analyzer
方法名:isImported

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),

相关文章

Analyzer类方法