Add AbstractEffectiveDocumentedNodeWithoutStatus
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / AbstractEffectiveDocumentedNode.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.model.api.DocumentedNode;
12 import org.opendaylight.yangtools.yang.model.api.Status;
13 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.StatusEffectiveStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
16
17 // FIXME: 5.0.0: rename to AbstractEffectiveDocumentedNodeWithStatus
18 public abstract class AbstractEffectiveDocumentedNode<A, D extends DeclaredStatement<A>>
19         extends AbstractEffectiveDocumentedNodeWithoutStatus<A, D> implements DocumentedNode.WithStatus {
20     private final @NonNull Status status;
21
22     /**
23      * Constructor.
24      *
25      * @param ctx
26      *            context of statement.
27      */
28     protected AbstractEffectiveDocumentedNode(final StmtContext<A, D, ?> ctx) {
29         super(ctx);
30         status = findFirstEffectiveSubstatementArgument(StatusEffectiveStatement.class).orElse(Status.CURRENT);
31     }
32
33     @Override
34     public final Status getStatus() {
35         return status;
36     }
37 }