Eliminate SourceException throws declarations
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / OrderedByStatementImpl.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.OrderedByStatement;
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.stmt.rfc6020.effective.OrderedByEffectiveStatementImpl;
18
19 public class OrderedByStatementImpl extends AbstractDeclaredStatement<String>
20         implements OrderedByStatement {
21     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(Rfc6020Mapping
22             .ORDERED_BY)
23             .build();
24
25     protected OrderedByStatementImpl(
26             StmtContext<String, OrderedByStatement, ?> context) {
27         super(context);
28     }
29
30     public static class Definition
31             extends
32             AbstractStatementSupport<String, OrderedByStatement, EffectiveStatement<String, OrderedByStatement>> {
33
34         public Definition() {
35             super(Rfc6020Mapping.ORDERED_BY);
36         }
37
38         @Override
39         public String parseArgumentValue(StmtContext<?, ?, ?> ctx, String value) {
40             return value;
41         }
42
43         @Override
44         public OrderedByStatement createDeclared(StmtContext<String, OrderedByStatement, ?> ctx) {
45             return new OrderedByStatementImpl(ctx);
46         }
47
48         @Override
49         public EffectiveStatement<String, OrderedByStatement> createEffective(
50                 StmtContext<String, OrderedByStatement, EffectiveStatement<String, OrderedByStatement>> ctx) {
51             return new OrderedByEffectiveStatementImpl(ctx);
52         }
53
54         @Override
55         public void onFullDefinitionDeclared(StmtContext.Mutable<String, OrderedByStatement,
56                 EffectiveStatement<String, OrderedByStatement>> stmt) {
57             super.onFullDefinitionDeclared(stmt);
58             SUBSTATEMENT_VALIDATOR.validate(stmt);
59         }
60     }
61
62     @Override
63     public String getValue() {
64         return argument();
65     }
66
67 }