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

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

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

Analyzer.findHeader介绍

暂无

代码示例

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

/**
 * Verify an attribute
 * 
 * @param f
 * @param where
 * @param key
 * @param propvalue
 * @throws IOException
 */
private void verifyAttribute(String path, String where, String key, String value) throws IOException {
  SetLocation location;
  if (!Verifier.isExtended(key)) {
    location = error("%s attribute [%s='%s'], key must be an EXTENDED (CORE1.3.2 %s). From %s", where, key,
        value, Verifier.EXTENDED_S, path);
  } else if (value == null || value.trim().length() == 0) {
    location = error(
        "%s attribute [%s='%s'], value is empty which is not allowed in ARGUMENT_S (CORE1.3.2 %s). From %s",
        where, key, value, Verifier.ARGUMENT_S, path);
  } else
    return;
  if (path != null) {
    File f = new File(path);
    if (f.isFile()) {
      FileLine fl = findHeader(f, key);
      if (fl != null)
        fl.set(location);
    }
  }
}

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

/**
 * Verify an attribute
 * 
 * @param f
 * @param where
 * @param key
 * @param propvalue
 * @throws IOException
 */
private void verifyAttribute(String path, String where, String key, String value) throws IOException {
  SetLocation location;
  if (!Verifier.isExtended(key)) {
    location = error("%s attribute [%s='%s'], key must be an EXTENDED (CORE1.3.2 %s). From %s", where, key,
      value, Verifier.EXTENDED_S, path);
  } else if (value == null || value.trim()
    .length() == 0) {
    location = error(
      "%s attribute [%s='%s'], value is empty which is not allowed in ARGUMENT_S (CORE1.3.2 %s). From %s",
      where, key, value, Verifier.ARGUMENT_S, path);
  } else
    return;
  if (path != null) {
    File f = new File(path);
    if (f.isFile()) {
      FileLine fl = findHeader(f, key);
      if (fl != null)
        fl.set(location);
    }
  }
}

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

/**
 * Verify an attribute
 * 
 * @param f
 * @param where
 * @param key
 * @param propvalue
 * @throws IOException
 */
private void verifyAttribute(String path, String where, String key, String value) throws IOException {
  SetLocation location;
  if (!Verifier.isExtended(key)) {
    location = error("%s attribute [%s='%s'], key must be an EXTENDED (CORE1.3.2 %s). From %s", where, key,
        value, Verifier.EXTENDED_S, path);
  } else if (value == null || value.trim().length() == 0) {
    location = error(
        "%s attribute [%s='%s'], value is empty which is not allowed in ARGUMENT_S (CORE1.3.2 %s). From %s",
        where, key, value, Verifier.ARGUMENT_S, path);
  } else
    return;
  if (path != null) {
    File f = new File(path);
    if (f.isFile()) {
      FileLine fl = findHeader(f, key);
      if (fl != null)
        fl.set(location);
    }
  }
}

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

/**
 * Verify an attribute
 * 
 * @param f
 * @param where
 * @param key
 * @param propvalue
 * @throws IOException
 */
private void verifyAttribute(String path, String where, String key, String value) throws IOException {
  SetLocation location;
  if (!Verifier.isExtended(key)) {
    location = error("%s attribute [%s='%s'], key must be an EXTENDED (CORE1.3.2 %s). From %s", where, key,
      value, Verifier.EXTENDED_S, path);
  } else if (value == null || value.trim()
    .length() == 0) {
    location = error(
      "%s attribute [%s='%s'], value is empty which is not allowed in ARGUMENT_S (CORE1.3.2 %s). From %s",
      where, key, value, Verifier.ARGUMENT_S, path);
  } else
    return;
  if (path != null) {
    File f = new File(path);
    if (f.isFile()) {
      FileLine fl = findHeader(f, key);
      if (fl != null)
        fl.set(location);
    }
  }
}

相关文章

Analyzer类方法