gpt4 book ai didi

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

转载 作者:知者 更新时间:2024-03-16 17:29:31 25 4
gpt4 key购买 nike

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

YangAugment.getAugmentedNode介绍

[英]Returns augmented node.
[中]返回扩充节点。

代码示例

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

/**
 * Returns the parent data node schema context for given yang node.
 *
 * @param node yang node
 * @return yang node
 */
public static YangNode getParentSchemaContext(YangNode node) {
  while (!(node instanceof SchemaDataNode) && node != null) {
    if (node.getYangSchemaNodeType() == YANG_AUGMENT_NODE) {
      node = ((YangAugment) node).getAugmentedNode();
      continue;
    }
    node = node.getParent();
  }
  return node;
}

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

@Override
public void addToChildSchemaMap(YangSchemaNodeIdentifier schemaNodeIdentifier,
    YangSchemaNodeContextInfo ctxInfo) throws DataModelException {
  getYsnContextInfoMap().put(schemaNodeIdentifier, ctxInfo);
  YangSchemaNodeContextInfo ctxInfo1 = new YangSchemaNodeContextInfo();
  ctxInfo1.setSchemaNode(ctxInfo.getSchemaNode());
  ctxInfo1.setContextSwitchedNode(this);
  if (getAugmentedNode() != null) {
    if (getAugmentedNode() instanceof YangChoice) {
      ctxInfo1.setContextSwitchedNode(
          ctxInfo.getContextSwitchedNode());
    }
    getAugmentedNode().addToChildSchemaMap(schemaNodeIdentifier,
                        ctxInfo1);
  }
}

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

YangNode node = augment.getAugmentedNode();
for (YangAtomicPath atomicPath : augment.getTargetNode()) {
  if (atomicPath.getNodeIdentifier().getPrefix() != null &&

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

if (curParent instanceof YangAugment) {
  YangAugment augment = (YangAugment) curParent;
  curParent = augment.getAugmentedNode();
  curCount = curCount + 1;

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