38fd53e1d2636046f30c2eb68e072438b89c2c35
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / AbstractEffectiveSchemaNode.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.yang.parser.rfc7950.stmt;
9
10 import org.eclipse.jdt.annotation.NonNull;
11 import org.opendaylight.yangtools.yang.common.QName;
12 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
13 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
14 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
16
17 public abstract class AbstractEffectiveSchemaNode<D extends DeclaredStatement<QName>> extends
18         AbstractSchemaEffectiveDocumentedNode<QName, D> implements SchemaNode {
19
20     private final @NonNull SchemaPath path;
21
22     protected AbstractEffectiveSchemaNode(final StmtContext<QName, D, ?> ctx) {
23         super(ctx);
24         this.path = ctx.getSchemaPath().get();
25     }
26
27     @Override
28     public final QName getQName() {
29         return path.getLastComponent();
30     }
31
32     @Override
33     public final SchemaPath getPath() {
34         return path;
35     }
36 }