本文整理了Java中aQute.bnd.osgi.Analyzer.report()
方法的一些代码示例,展示了Analyzer.report()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Analyzer.report()
方法的具体详情如下:
包路径:aQute.bnd.osgi.Analyzer
类名称: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"
}));
}
内容来源于网络,如有侵权,请联系作者删除!