e02a3d77d7d657c516901d81044f02c7b3868c86
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / AbstractEffectiveDocumentedNode.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o. 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 com.google.common.annotations.Beta;
11 import java.util.Optional;
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.opendaylight.yangtools.yang.model.api.DocumentedNode;
14 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.DescriptionEffectiveStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.ReferenceEffectiveStatement;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18
19 @Beta
20 public abstract class AbstractEffectiveDocumentedNode<A, D extends DeclaredStatement<A>>
21         extends DeclaredEffectiveStatementBase<A, D> implements DocumentedNode {
22     private final @Nullable String description;
23     private final @Nullable String reference;
24
25     protected AbstractEffectiveDocumentedNode(final StmtContext<A, D, ?> ctx) {
26         super(ctx);
27         description = findFirstEffectiveSubstatementArgument(DescriptionEffectiveStatement.class).orElse(null);
28         reference = findFirstEffectiveSubstatementArgument(ReferenceEffectiveStatement.class).orElse(null);
29     }
30
31     @Override
32     public final Optional<String> getDescription() {
33         return Optional.ofNullable(description);
34     }
35
36     @Override
37     public final Optional<String> getReference() {
38         return Optional.ofNullable(reference);
39     }
40
41     protected final @Nullable String nullableDescription() {
42         return description;
43     }
44
45     protected final @Nullable String nullableReference() {
46         return reference;
47     }
48 }