Revert Merge "Bug 2366: new parser - Types & TypeDefs"
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / WhenStatementImpl.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.WhenEffectiveStatementImpl;
11
12 import org.opendaylight.yangtools.yang.model.api.RevisionAwareXPath;
13 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
14 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.DescriptionStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.ReferenceStatement;
17 import org.opendaylight.yangtools.yang.model.api.stmt.WhenStatement;
18 import org.opendaylight.yangtools.yang.model.util.RevisionAwareXPathImpl;
19 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
20 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
21 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
22 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
23 import javax.annotation.Nonnull;
24 import javax.annotation.Nullable;
25
26 public class WhenStatementImpl extends AbstractDeclaredStatement<RevisionAwareXPath> implements
27         WhenStatement {
28
29     protected WhenStatementImpl(
30             StmtContext<RevisionAwareXPath, WhenStatement, ?> context) {
31         super(context);
32     }
33
34     public static class Definition extends AbstractStatementSupport<RevisionAwareXPath,WhenStatement,EffectiveStatement<RevisionAwareXPath,WhenStatement>> {
35
36         public Definition() {
37             super(Rfc6020Mapping.WHEN);
38         }
39
40         @Override public RevisionAwareXPath parseArgumentValue(
41                 StmtContext<?, ?, ?> ctx, String value) throws SourceException {
42             return new RevisionAwareXPathImpl(value, false);
43         }
44
45         @Override public WhenStatement createDeclared(
46                 StmtContext<RevisionAwareXPath, WhenStatement, ?> ctx) {
47             return new WhenStatementImpl(ctx);
48         }
49
50         @Override public EffectiveStatement<RevisionAwareXPath, WhenStatement> createEffective(
51                 StmtContext<RevisionAwareXPath, WhenStatement, EffectiveStatement<RevisionAwareXPath, WhenStatement>> ctx) {
52             return new WhenEffectiveStatementImpl(ctx);
53         }
54     }
55
56     @Nonnull @Override
57     public RevisionAwareXPath getCondition() {
58         return argument();
59     }
60
61     @Nullable @Override
62     public DescriptionStatement getDescription() {
63         return firstDeclared(DescriptionStatement.class);
64     }
65
66     @Nullable @Override
67     public ReferenceStatement getReference() {
68         return firstDeclared(ReferenceStatement.class);
69     }
70 }