Add CommonStmtCtx
[yangtools.git] / yang / rfc6643-parser-support / src / main / java / org / opendaylight / yangtools / rfc6643 / parser / DisplayHintEffectiveStatementImpl.java
1 /*
2  * Copyright (c) 2016, 2020 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.rfc6643.parser;
9
10 import com.google.common.collect.ImmutableList;
11 import java.util.Objects;
12 import org.opendaylight.yangtools.rfc6643.model.api.DisplayHintEffectiveStatement;
13 import org.opendaylight.yangtools.rfc6643.model.api.DisplayHintSchemaNode;
14 import org.opendaylight.yangtools.rfc6643.model.api.DisplayHintStatement;
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.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
19 import org.opendaylight.yangtools.yang.parser.spi.meta.EffectiveStmtCtx.Current;
20
21 final class DisplayHintEffectiveStatementImpl extends UnknownEffectiveStatementBase<String, DisplayHintStatement>
22         implements DisplayHintEffectiveStatement, DisplayHintSchemaNode {
23     private final SchemaPath path;
24
25     DisplayHintEffectiveStatementImpl(final Current<String, DisplayHintStatement> stmt,
26             final ImmutableList<? extends EffectiveStatement<?, ?>> substatements) {
27         super(stmt, substatements);
28         path = stmt.getEffectiveParent().getSchemaPath().createChild(getNodeType());
29     }
30
31     @Override
32     public QName getQName() {
33         return getNodeType();
34     }
35
36     @Override
37     @Deprecated
38     public SchemaPath getPath() {
39         return path;
40     }
41
42     @Override
43     public DisplayHintEffectiveStatement asEffectiveStatement() {
44         return this;
45     }
46
47     @Override
48     public int hashCode() {
49         return Objects.hash(path, getNodeType(), getNodeParameter());
50     }
51
52     @Override
53     public boolean equals(final Object obj) {
54         if (this == obj) {
55             return true;
56         }
57         if (obj == null) {
58             return false;
59         }
60         if (getClass() != obj.getClass()) {
61             return false;
62         }
63         final DisplayHintEffectiveStatementImpl other = (DisplayHintEffectiveStatementImpl) obj;
64         if (!Objects.equals(path, other.path)) {
65             return false;
66         }
67         if (!Objects.equals(getNodeType(), other.getNodeType())) {
68             return false;
69         }
70         if (!Objects.equals(getNodeParameter(), other.getNodeParameter())) {
71             return false;
72         }
73         return true;
74     }
75 }