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

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

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

Analyzer.doNamesection介绍

[英]Parse the namesection as instructions and then match them against the current set of resources For example:

-namesection: *;baz=true, abc/def/bar/X.class=3

The raw value of Constants#NAMESECTION is used but the values of the attributes are replaced where @ is set to the resource name. This allows macro to operate on the resource
[中]将namesection解析为指令,然后将其与当前的资源集相匹配,例如:

-namesection: *;baz=true, abc/def/bar/X.class=3

常量的原始值#使用namesection,但在将@设置为资源名称的位置替换属性值。这允许宏对资源进行操作

代码示例

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

main.putValue(BUNDLE_CLASSPATH, printClauses(bcp));
doNamesection(dot, manifest);

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

doNamesection(dot, manifest);
for (String header : Iterables.iterable(getProperties().propertyNames(), String.class::cast)) {
  if (header.trim()

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

doNamesection(dot, manifest);

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

doNamesection(dot, manifest);

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

doNamesection(dot, manifest);
for (String header : Iterables.iterable(getProperties().propertyNames(), String.class::cast)) {
  if (header.trim()

相关文章

Analyzer类方法