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

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

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

Analyzer.getOutputFile介绍

[英]Calculate the output file for the given target. The strategy is:

parameter given if not null and not directory 
if directory, this will be the output directory 
based on bsn-version.jar 
name of the source file if exists 
Untitled-[n]

[中]计算给定目标的输出文件。策略是:

parameter given if not null and not directory 
if directory, this will be the output directory 
based on bsn-version.jar 
name of the source file if exists 
Untitled-[n]

代码示例

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

output = getOutputFile(null);

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

output = getOutputFile(null);

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

output = getOutputFile(null);

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

output = getOutputFile(null);

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

output = getOutputFile(null);

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

wrapper.setDefaults(bsn, version);
File outputFile = wrapper.getOutputFile(output == null ? null : output.getAbsolutePath());

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

File outputFile = wrapper.getOutputFile(options.output());
if (outputFile.getCanonicalFile().equals(file.getCanonicalFile())) {

相关文章

Analyzer类方法