Propagate @Nonnull and @Nullable annotations
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / thirdparty / plugin / ThirdPartyExtensionEffectiveStatementImpl.java
1 /*
2  * Copyright (c) 2016 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
9 package org.opendaylight.yangtools.yang.thirdparty.plugin;
10
11 import com.google.common.annotations.Beta;
12 import java.util.Objects;
13 import javax.annotation.Nonnull;
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
16 import org.opendaylight.yangtools.yang.model.api.stmt.UnknownStatement;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.UnknownEffectiveStatementBase;
19
20 @Beta
21 public final class ThirdPartyExtensionEffectiveStatementImpl extends UnknownEffectiveStatementBase<String> {
22
23     private final SchemaPath path;
24     private final String valueFromNamespace;
25
26     public ThirdPartyExtensionEffectiveStatementImpl(final StmtContext<String, UnknownStatement<String>, ?> ctx) {
27         super(ctx);
28         path = ctx.getParentContext().getSchemaPath().get().createChild(getNodeType());
29         valueFromNamespace = ctx.getFromNamespace(ThirdPartyNamespace.class, ctx);
30     }
31
32     public String getValueFromNamespace() {
33         return valueFromNamespace;
34     }
35
36     @Nonnull
37     @Override
38     public QName getQName() {
39         return getNodeType();
40     }
41
42     @Nonnull
43     @Override
44     public SchemaPath getPath() {
45         return path;
46     }
47
48     @Override
49     public int hashCode() {
50         return Objects.hash(path, getNodeType(), getNodeParameter());
51     }
52
53     @Override
54     public boolean equals(final Object obj) {
55         if (this == obj) {
56             return true;
57         }
58         if (obj == null) {
59             return false;
60         }
61         if (getClass() != obj.getClass()) {
62             return false;
63         }
64         final ThirdPartyExtensionEffectiveStatementImpl other = (ThirdPartyExtensionEffectiveStatementImpl) obj;
65         if (!Objects.equals(path, other.path)) {
66             return false;
67         }
68         if (!Objects.equals(getNodeType(), other.getNodeType())) {
69             return false;
70         }
71         if (!Objects.equals(getNodeParameter(), other.getNodeParameter())) {
72             return false;
73         }
74         return true;
75     }
76 }