Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / type / AbstractLeafrefSpecificationSupport.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, 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.type;
9
10 import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
11 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
12 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement.LeafrefSpecification;
13 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
14 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
15
16 abstract class AbstractLeafrefSpecificationSupport
17         extends
18         AbstractStatementSupport<String, LeafrefSpecification, EffectiveStatement<String, LeafrefSpecification>> {
19     AbstractLeafrefSpecificationSupport() {
20         super(YangStmtMapping.TYPE);
21     }
22
23     @Override
24     public final String parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
25         return value;
26     }
27
28     @Override
29     public final LeafrefSpecification createDeclared(final StmtContext<String, LeafrefSpecification, ?> ctx) {
30         return new LeafrefSpecificationImpl(ctx);
31     }
32
33     @Override
34     public final EffectiveStatement<String, LeafrefSpecification> createEffective(
35             final StmtContext<String, LeafrefSpecification, EffectiveStatement<String, LeafrefSpecification>> ctx) {
36         return new LeafrefSpecificationEffectiveStatement(ctx);
37     }
38 }