Remove IetfYangSmiv2Namespace
[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 java.util.Objects;
11 import org.opendaylight.yangtools.rfc6643.model.api.DisplayHintEffectiveStatement;
12 import org.opendaylight.yangtools.rfc6643.model.api.DisplayHintSchemaNode;
13 import org.opendaylight.yangtools.rfc6643.model.api.DisplayHintStatement;
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
16 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18
19 final class DisplayHintEffectiveStatementImpl extends UnknownEffectiveStatementBase<String, DisplayHintStatement>
20         implements DisplayHintEffectiveStatement, DisplayHintSchemaNode {
21
22     private final SchemaPath path;
23
24     DisplayHintEffectiveStatementImpl(final StmtContext<String, DisplayHintStatement, ?> ctx) {
25         super(ctx);
26         path = ctx.getParentContext().getSchemaPath().get().createChild(getNodeType());
27     }
28
29     @Override
30     public QName getQName() {
31         return getNodeType();
32     }
33
34     @Override
35     public SchemaPath getPath() {
36         return path;
37     }
38
39     @Override
40     public int hashCode() {
41         return Objects.hash(path, getNodeType(), getNodeParameter());
42     }
43
44     @Override
45     public boolean equals(final Object obj) {
46         if (this == obj) {
47             return true;
48         }
49         if (obj == null) {
50             return false;
51         }
52         if (getClass() != obj.getClass()) {
53             return false;
54         }
55         final DisplayHintEffectiveStatementImpl other = (DisplayHintEffectiveStatementImpl) obj;
56         if (!Objects.equals(path, other.path)) {
57             return false;
58         }
59         if (!Objects.equals(getNodeType(), other.getNodeType())) {
60             return false;
61         }
62         if (!Objects.equals(getNodeParameter(), other.getNodeParameter())) {
63             return false;
64         }
65         return true;
66     }
67 }