Refactor typedef implementations
[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 @Deprecated(forRemoval = true)
18 public abstract class AbstractEffectiveSchemaNode<D extends DeclaredStatement<QName>> extends
19         AbstractSchemaEffectiveDocumentedNode<QName, D> implements SchemaNode {
20
21     private final @NonNull SchemaPath path;
22
23     protected AbstractEffectiveSchemaNode(final StmtContext<QName, D, ?> ctx) {
24         super(ctx);
25         this.path = ctx.getSchemaPath().get();
26     }
27
28     @Override
29     public final QName getQName() {
30         return path.getLastComponent();
31     }
32
33     @Override
34     public final SchemaPath getPath() {
35         return path;
36     }
37 }