本文整理了Java中aQute.bnd.osgi.Analyzer.doEEProfiles()
方法的一些代码示例,展示了Analyzer.doEEProfiles()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Analyzer.doEEProfiles()
方法的具体详情如下:
包路径:aQute.bnd.osgi.Analyzer
类名称:Analyzer
方法名:doEEProfiles
[英]Added for 1.8 profiles. A 1.8 profile is a set of packages so the VM can be delivered in smaller versions. This method will look at the Constants#EEPROFILE option. If it is set, it can be "auto" or it can contain a list of profiles specified as name="a,b,c" values. If we find a package outside the profiles, no profile is set. Otherwise the highest found profile is added. This only works for java packages.
[中]为1.8配置文件添加。1.8配置文件是一组包,因此VM可以以较小的版本交付。此方法将查看常量#EEPROFILE选项。如果设置了,它可以是“自动”的,也可以包含指定为name=“a,b,c”值的配置文件列表。如果我们在配置文件之外找到一个包,则不会设置任何配置文件。否则将添加找到的最高配置文件。这只适用于java包。
代码示例来源:origin: biz.aQute.bnd/biz.aQute.bndlib
Attrs attrs = new Attrs();
String filter = doEEProfiles(highest);
代码示例来源:origin: biz.aQute.bnd/bndlib
Attrs attrs = new Attrs();
String filter = doEEProfiles(highest);
代码示例来源:origin: biz.aQute.bnd/bnd
Attrs attrs = new Attrs();
String filter = doEEProfiles(highest);
代码示例来源:origin: biz.aQute.bnd/biz.aQute.bnd
Attrs attrs = new Attrs();
String filter = doEEProfiles(highest);
内容来源于网络,如有侵权,请联系作者删除!