1d6f24511f12cbfa68ab7f592ab85c86943cfb86
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / YinElementStatementImpl.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.model.api.Rfc6020Mapping;
11 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
12 import org.opendaylight.yangtools.yang.model.api.stmt.YinElementStatement;
13 import org.opendaylight.yangtools.yang.parser.spi.SubstatementValidator;
14 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
17 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
18 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.YinElementEffectiveStatementImpl;
19
20 public class YinElementStatementImpl extends AbstractDeclaredStatement<Boolean>
21         implements YinElementStatement {
22     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(
23         Rfc6020Mapping.YIN_ELEMENT).build();
24
25     protected YinElementStatementImpl(final StmtContext<Boolean, YinElementStatement, ?> context) {
26         super(context);
27     }
28
29     public static class Definition extends
30             AbstractStatementSupport<Boolean, YinElementStatement, EffectiveStatement<Boolean, YinElementStatement>> {
31
32         public Definition() {
33             super(Rfc6020Mapping.YIN_ELEMENT);
34         }
35
36         @Override
37         public Boolean parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
38             return Boolean.valueOf(value);
39         }
40
41         @Override
42         public YinElementStatement createDeclared(final StmtContext<Boolean, YinElementStatement, ?> ctx) {
43             return new YinElementStatementImpl(ctx);
44         }
45
46         @Override
47         public EffectiveStatement<Boolean, YinElementStatement> createEffective(
48                 final StmtContext<Boolean, YinElementStatement, EffectiveStatement<Boolean, YinElementStatement>> ctx) {
49             return new YinElementEffectiveStatementImpl(ctx);
50         }
51
52         @Override
53         public void onFullDefinitionDeclared(final StmtContext.Mutable<Boolean, YinElementStatement,
54                 EffectiveStatement<Boolean, YinElementStatement>> stmt) throws SourceException {
55             super.onFullDefinitionDeclared(stmt);
56             SUBSTATEMENT_VALIDATOR.validate(stmt);
57         }
58     }
59
60     @Override
61     public boolean getValue() {
62         return argument();
63     }
64 }