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

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

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

Analyzer.report介绍

[英]Report the details of this analyzer
[中]报告此分析器的详细信息

代码示例

代码示例来源:origin: biz.aQute.bnd/bndlib

/**
 * Create a report of the settings
 * @throws Exception
 */
public void report(Map<String,Object> table) throws Exception {
  build();
  super.report(table);
  table.put("Do Not Copy", getDoNotCopy());
  table.put("Git head", _githead( new String[]{"githead"}));
}

代码示例来源:origin: biz.aQute.bnd/bnd

/**
 * Create a report of the settings
 * @throws Exception
 */
public void report(Map<String,Object> table) throws Exception {
  build();
  super.report(table);
  table.put("Do Not Copy", getDoNotCopy());
  table.put("Git head", _githead( new String[]{"githead"}));
}

代码示例来源:origin: biz.aQute.bnd/biz.aQute.bndlib

/**
 * Create a report of the settings
 * 
 * @throws Exception
 */
@Override
public void report(Map<String, Object> table) throws Exception {
  build();
  super.report(table);
  table.put("Do Not Copy", getDoNotCopy());
  table.put("Git head", _githead(new String[] {
    "githead"
  }));
}

代码示例来源:origin: biz.aQute.bnd/biz.aQute.bnd

/**
 * Create a report of the settings
 * 
 * @throws Exception
 */
@Override
public void report(Map<String, Object> table) throws Exception {
  build();
  super.report(table);
  table.put("Do Not Copy", getDoNotCopy());
  table.put("Git head", _githead(new String[] {
    "githead"
  }));
}

相关文章

Analyzer类方法