Reformulate StatementContextFactory.createEffective()
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / thirdparty / plugin / ThirdPartyExtensionEffectiveStatementImpl.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
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
7  */
8 package org.opendaylight.yangtools.yang.thirdparty.plugin;
9
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.EffectiveStmtCtx.Current;
17
18 final class ThirdPartyExtensionEffectiveStatementImpl
19         extends UnknownEffectiveStatementBase<String, ThirdPartyExtensionStatement>
20         implements ThirdPartyExtensionEffectiveStatement {
21
22     private final @NonNull SchemaPath path;
23     private final String valueFromNamespace;
24
25     ThirdPartyExtensionEffectiveStatementImpl(final Current<String, ThirdPartyExtensionStatement> stmt,
26             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
27         super(stmt, substatements);
28         path = stmt.getParent().getSchemaPath().createChild(getNodeType());
29         valueFromNamespace = stmt.getFromNamespace(ThirdPartyNamespace.class, stmt.caerbannog());
30     }
31
32     @Override
33     public String getValueFromNamespace() {
34         return valueFromNamespace;
35     }
36
37     @Override
38     public QName getQName() {
39         return getNodeType();
40     }
41
42     @Override
43     @Deprecated
44     public SchemaPath getPath() {
45         return path;
46     }
47 }