gpt4 book ai didi

org.onosproject.yang.compiler.datamodel.YangAugment.getName()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-16 18:09:31 24 4
gpt4 key购买 nike

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

YangAugment.getName介绍

暂无

代码示例

代码示例来源:origin: org.onosproject/onos-yang-compiler-datamodel

@Override
public void detectSelfCollision(String identifierName,
                YangConstructType dataType)
    throws DataModelException {
  if (getName().equals(identifierName)) {
    throw new DataModelException(
        "YANG file error: Duplicate input identifier detected, " +
            "same as input \"" +
            getName() + " in " +
            getLineNumber() + " at " +
            getCharPosition() +
            " in " + getFileName() + "\"");
  }
}

代码示例来源:origin: org.onosproject/onos-yang-compiler-parser

/**
 * Checks for the augment name name collision. If there are augments with
 * the same name present, then the new augment will be set with a logical
 * node.
 *
 * @param root augment parent node
 * @param aug  YANG augment node
 */
public static void checkAugNameCollision(YangNode root, YangAugment aug) {
  YangNode child = root.getChild();
  while (child != null) {
    if (child instanceof YangAugment) {
      if (child.getName().equals(aug.getName())) {
        aug.setLogicalNode((YangAugment) child);
      }
    }
    child = child.getNextSibling();
  }
}

代码示例来源:origin: org.onosproject/onos-yang-compiler-parser

/**
   * Removes the duplicate YANG augment from the data tree by detaching it
   * from its parent and from its sibling.
   *
   * @param augment duplicate YANG augment
   */
  public static void removeAugment(YangAugment augment) {
    YangNode root = augment.getParent();
    YangNode child = root.getChild();
    YangNode pSib = null;
    if (child == null) {
      throw new ParserException("The root node of augment " + augment
          .getName() + " must have atleast one child");
    }
    while (child != null) {
      if (child == augment) {
        if (pSib == null) {
          root.setChild(null);
        } else {
          pSib.setNextSibling(null);
        }
      }
      pSib = child;
      child = child.getNextSibling();
    }
    augment = new YangJavaAugmentTranslator();
    augment = null;
  }
}

代码示例来源:origin: org.onosproject/onos-yang-compiler-parser

constructExtendedListenerErrorMessage(
    UNHANDLED_PARSED_DATA, AUGMENT_DATA,
    augment.getName(), ENTRY, e.getMessage()));

代码示例来源:origin: org.onosproject/onos-yang-compiler-linker

getErrorMsg(FAILED_TO_ADD_CASE, augment.getName(),
      augment.getLineNumber(), augment.getCharPosition(),
      augment.getFileName()));

代码示例来源:origin: org.onosproject/onos-yang-compiler-linker

private void resolveUsesAugment(T entity, YangNode node) {
  YangXpathLinker<T> linker = new YangXpathLinker<T>();
  YangAugment aug = (YangAugment) entity;
  YangNode tgt = linker.processUsesAugLinking(aug.getTargetNode(),
                        (YangUses) node);
  if (tgt != null) {
    if (tgt instanceof YangAugmentableNode) {
      //TODO: collision detection
      ((YangAugmentableNode) tgt).addAugmentation(aug);
      aug.setAugmentedNode(tgt);
      setAugmentedFlagInAncestors(tgt);
      Resolvable resolvable = (Resolvable) entity;
      resolvable.setResolvableStatus(RESOLVED);
      if (tgt instanceof YangInput) {
        linker.addInModuleIfInput(aug, node);
      }
    } else {
      throw new LinkerException(getErrorMsg(
          INVALID_TARGET + tgt.getNodeType(),
          aug.getName(), aug.getLineNumber(),
          aug.getCharPosition(), aug.getFileName()));
    }
  }
}

代码示例来源:origin: org.onosproject/onos-yang-compiler-linker

throw new LinkerException(getErrorMsg(
    INVALID_TARGET + targetNode.getNodeType(),
    augment.getName(), augment.getLineNumber(),
    augment.getCharPosition(), augment.getFileName()));
  FAILED_TO_LINK, augment.getName(), augment
      .getLineNumber(), augment.getCharPosition(),
  augment.getFileName()));

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com