本文整理了Java中aQute.bnd.osgi.Analyzer.getBsn()
方法的一些代码示例,展示了Analyzer.getBsn()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Analyzer.getBsn()
方法的具体详情如下:
包路径:aQute.bnd.osgi.Analyzer
类名称:Analyzer
方法名:getBsn
[英]Clear the key part of a header. I.e. remove everything from the first ';'
[中]清除标题的关键部分。即从第一个“;”中删除所有内容
代码示例来源:origin: biz.aQute/bndlib
public String _bsn(@SuppressWarnings("unused")
String args[]) {
return getBsn();
}
代码示例来源:origin: biz.aQute.bnd/biz.aQute.bndlib
public String _bsn(@SuppressWarnings("unused") String args[]) {
return getBsn();
}
代码示例来源:origin: biz.aQute.bnd/biz.aQute.bnd
public String _bsn(@SuppressWarnings("unused") String args[]) {
return getBsn();
}
代码示例来源:origin: biz.aQute.bnd/bndlib
public String _bsn(@SuppressWarnings("unused") String args[]) {
return getBsn();
}
代码示例来源:origin: biz.aQute.bnd/bnd
public String _bsn(@SuppressWarnings("unused") String args[]) {
return getBsn();
}
代码示例来源:origin: biz.aQute.bnd/biz.aQute.bnd
/**
* Report the details of this analyzer
*/
@Override
public void report(Map<String, Object> table) throws Exception {
super.report(table);
analyze();
table.put("Contained", getContained().entrySet());
table.put("Imported", getImports().entrySet());
table.put("Exported", getExports().entrySet());
table.put("Referred", getReferred().entrySet());
table.put("Bundle Symbolic Name", getBsn());
table.put("Execution Environments", ees);
}
代码示例来源:origin: biz.aQute.bnd/biz.aQute.bndlib
/**
* Report the details of this analyzer
*/
@Override
public void report(Map<String, Object> table) throws Exception {
super.report(table);
analyze();
table.put("Contained", getContained().entrySet());
table.put("Imported", getImports().entrySet());
table.put("Exported", getExports().entrySet());
table.put("Referred", getReferred().entrySet());
table.put("Bundle Symbolic Name", getBsn());
table.put("Execution Environments", ees);
}
代码示例来源:origin: biz.aQute.bnd/bndlib
/**
* Report the details of this analyzer
*/
public void report(Map<String,Object> table) throws Exception {
super.report(table);
analyze();
table.put("Contained", getContained().entrySet());
table.put("Imported", getImports().entrySet());
table.put("Exported", getExports().entrySet());
table.put("Referred", getReferred().entrySet());
table.put("Referred", getReferred().entrySet());
table.put("Bundle Symbolic Name", getBsn());
table.put("Execution Environments", ees);
}
代码示例来源:origin: biz.aQute.bnd/bnd
/**
* Report the details of this analyzer
*/
public void report(Map<String,Object> table) throws Exception {
super.report(table);
analyze();
table.put("Contained", getContained().entrySet());
table.put("Imported", getImports().entrySet());
table.put("Exported", getExports().entrySet());
table.put("Referred", getReferred().entrySet());
table.put("Referred", getReferred().entrySet());
table.put("Bundle Symbolic Name", getBsn());
table.put("Execution Environments", ees);
}
代码示例来源:origin: apache/felix
private void init(Analyzer analyzer) {
m_logger = new BndLogger(m_reporter, analyzer.getBsn(), parseOption(m_properties, LOGLEVEL, null));
m_buildImportExportService = parseOption(m_properties, BUILD_IMPEXT, false);
m_addRequireCapability = parseOption(m_properties, ADD_REQUIRE_CAPABILITY, false);
analyzer.setExceptions(true);
m_logger.info("Initialized Bnd DependencyManager plugin: buildImportExport=%b", m_buildImportExportService);
}
代码示例来源:origin: biz.aQute/bndlib
String bsn = getBsn();
if (main.getValue(BUNDLE_SYMBOLICNAME) == null) {
main.putValue(BUNDLE_SYMBOLICNAME, bsn);
代码示例来源:origin: biz.aQute.bnd/biz.aQute.bndlib
String bsn = getBsn();
if (main.getValue(BUNDLE_SYMBOLICNAME) == null) {
main.putValue(BUNDLE_SYMBOLICNAME, bsn);
代码示例来源:origin: biz.aQute.bnd/bndlib
String bsn = getBsn();
if (main.getValue(BUNDLE_SYMBOLICNAME) == null) {
main.putValue(BUNDLE_SYMBOLICNAME, bsn);
代码示例来源:origin: biz.aQute.bnd/bnd
String bsn = getBsn();
if (main.getValue(BUNDLE_SYMBOLICNAME) == null) {
main.putValue(BUNDLE_SYMBOLICNAME, bsn);
代码示例来源:origin: biz.aQute.bnd/biz.aQute.bnd
String bsn = getBsn();
if (main.getValue(BUNDLE_SYMBOLICNAME) == null) {
main.putValue(BUNDLE_SYMBOLICNAME, bsn);
内容来源于网络,如有侵权,请联系作者删除!