2 * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6 * and is available at http://www.eclipse.org/legal/epl-v10.html
8 package org.opendaylight.yangtools.yang.thirdparty.plugin;
10 import com.google.common.collect.ImmutableList;
11 import org.eclipse.jdt.annotation.NonNull;
12 import org.opendaylight.yangtools.yang.common.QName;
13 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
14 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
15 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18 final class ThirdPartyExtensionEffectiveStatementImpl
19 extends UnknownEffectiveStatementBase<String, ThirdPartyExtensionStatement>
20 implements ThirdPartyExtensionEffectiveStatement {
22 private final @NonNull SchemaPath path;
23 private final String valueFromNamespace;
25 ThirdPartyExtensionEffectiveStatementImpl(final StmtContext<String, ThirdPartyExtensionStatement, ?> ctx,
26 final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
27 super(ctx, substatements);
28 path = ctx.coerceParentContext().getSchemaPath().get().createChild(getNodeType());
29 valueFromNamespace = ctx.getFromNamespace(ThirdPartyNamespace.class, ctx);
33 public String getValueFromNamespace() {
34 return valueFromNamespace;
38 public QName getQName() {
44 public SchemaPath getPath() {