Bug 3670 (part 1/5): Use of new statement parser in yang-maven-plugin
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / DeviationStatementImpl.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.rfc6020;
9
10 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.DeviationEffectiveStatementImpl;
11
12 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
13 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
14 import org.opendaylight.yangtools.yang.model.api.stmt.DeviationStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
19 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
20 import javax.annotation.Nonnull;
21
22 public class DeviationStatementImpl extends AbstractDeclaredStatement<SchemaNodeIdentifier> implements DeviationStatement {
23
24     protected DeviationStatementImpl(
25             StmtContext<SchemaNodeIdentifier, DeviationStatement, ?> context) {
26         super(context);
27     }
28
29     public static class Definition extends AbstractStatementSupport<SchemaNodeIdentifier,DeviationStatement,EffectiveStatement<SchemaNodeIdentifier,DeviationStatement>> {
30
31         public Definition() {
32             super(Rfc6020Mapping.DEVIATION);
33         }
34
35         @Override public SchemaNodeIdentifier parseArgumentValue(
36                 StmtContext<?, ?, ?> ctx, String value) throws SourceException {
37             return SchemaNodeIdentifier.create(Utils.parseXPath(ctx, value), Utils.isXPathAbsolute(ctx, value));
38         }
39
40         @Override public DeviationStatement createDeclared(
41                 StmtContext<SchemaNodeIdentifier, DeviationStatement, ?> ctx) {
42             return new DeviationStatementImpl(ctx);
43         }
44
45         @Override public EffectiveStatement<SchemaNodeIdentifier, DeviationStatement> createEffective(
46                 StmtContext<SchemaNodeIdentifier, DeviationStatement, EffectiveStatement<SchemaNodeIdentifier, DeviationStatement>> ctx) {
47             return new DeviationEffectiveStatementImpl(ctx);
48         }
49     }
50
51     @Nonnull @Override
52     public SchemaNodeIdentifier getTargetNode() {
53         return argument();
54     }
55 }