0e2fdc79269fe1c449a7d510f07b97dea70b25f2
[yangtools.git] / yang / odlext-parser-support / src / main / java / org / opendaylight / yangtools / odlext / parser / AnyxmlSchemaLocationEffectiveStatementImpl.java
1 /*
2  * Copyright (c) 2015 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.odlext.parser;
9
10 import com.google.common.annotations.VisibleForTesting;
11 import com.google.common.collect.ImmutableList;
12 import org.eclipse.jdt.annotation.NonNull;
13 import org.opendaylight.yangtools.odlext.model.api.AnyxmlSchemaLocationEffectiveStatement;
14 import org.opendaylight.yangtools.odlext.model.api.AnyxmlSchemaLocationStatement;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
17 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
18 import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier;
19 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
20 import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current;
21
22 @VisibleForTesting
23 public final class AnyxmlSchemaLocationEffectiveStatementImpl
24         extends UnknownEffectiveStatementBase<SchemaNodeIdentifier, AnyxmlSchemaLocationStatement>
25         implements AnyxmlSchemaLocationEffectiveStatement {
26     private final @NonNull SchemaPath path;
27
28     AnyxmlSchemaLocationEffectiveStatementImpl(
29             final Current<SchemaNodeIdentifier, AnyxmlSchemaLocationStatement> stmt,
30             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
31         super(stmt, substatements);
32         path = stmt.getEffectiveParent().getSchemaPath().createChild(getNodeType());
33     }
34
35     @Override
36     public QName getQName() {
37         return getNodeType();
38     }
39
40     @Override
41     @Deprecated
42     public SchemaPath getPath() {
43         return path;
44     }
45 }