YANGTOOLS-706: reorganize statement definitions
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / anyxmlschema / AnyxmlSchemaLocationEffectiveStatementImpl.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.stmt.anyxmlschema;
9
10 import com.google.common.annotations.VisibleForTesting;
11 import java.util.Objects;
12 import javax.annotation.Nonnull;
13 import org.opendaylight.yangtools.yang.common.QName;
14 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
15 import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier;
16 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.UnknownEffectiveStatementBase;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18
19 @VisibleForTesting
20 public final class AnyxmlSchemaLocationEffectiveStatementImpl
21         extends UnknownEffectiveStatementBase<SchemaNodeIdentifier, AnyxmlSchemaLocationStatement>
22         implements AnyxmlSchemaLocationEffectiveStatement {
23
24     private final SchemaPath path;
25
26     AnyxmlSchemaLocationEffectiveStatementImpl(
27             final StmtContext<SchemaNodeIdentifier, AnyxmlSchemaLocationStatement, ?> ctx) {
28         super(ctx);
29         path = ctx.getParentContext().getSchemaPath().get().createChild(getNodeType());
30     }
31
32     @Nonnull
33     @Override
34     public QName getQName() {
35         return getNodeType();
36     }
37
38     @Nonnull
39     @Override
40     public SchemaPath getPath() {
41         return path;
42     }
43
44     @Override
45     public int hashCode() {
46         final int prime = 31;
47         int result = 1;
48         result = prime * result + Objects.hashCode(path);
49         result = prime * result + Objects.hashCode(getNodeType());
50         result = prime * result + Objects.hashCode(getNodeParameter());
51         return result;
52     }
53
54     @Override
55     public boolean equals(final Object obj) {
56         if (this == obj) {
57             return true;
58         }
59         if (obj == null) {
60             return false;
61         }
62         if (getClass() != obj.getClass()) {
63             return false;
64         }
65         AnyxmlSchemaLocationEffectiveStatementImpl other = (AnyxmlSchemaLocationEffectiveStatementImpl) obj;
66         if (!Objects.equals(path, other.path)) {
67             return false;
68         }
69         if (!Objects.equals(getNodeType(), other.getNodeType())) {
70             return false;
71         }
72         if (!Objects.equals(getNodeParameter(), other.getNodeParameter())) {
73             return false;
74         }
75         return true;
76     }
77 }