Bug 7051 - moving of SubstatementValidator into spi.meta package
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / DescriptionStatementImpl.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 javax.annotation.Nonnull;
11 import org.opendaylight.yangtools.yang.model.api.YangStmtMapping;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.DescriptionStatement;
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.meta.SubstatementValidator;
18 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.DescriptionEffectiveStatementImpl;
19
20 public class DescriptionStatementImpl extends AbstractDeclaredStatement<String> implements DescriptionStatement {
21     private static final SubstatementValidator SUBSTATEMENT_VALIDATOR = SubstatementValidator.builder(YangStmtMapping
22             .DESCRIPTION)
23             .build();
24
25     protected DescriptionStatementImpl(
26             final StmtContext<String, DescriptionStatement, ?> context) {
27         super(context);
28     }
29
30     public static class Definition extends AbstractStatementSupport<String,DescriptionStatement,EffectiveStatement<String,DescriptionStatement>> {
31
32         public Definition() {
33             super(YangStmtMapping.DESCRIPTION);
34         }
35
36         @Override
37         public String parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
38             return value;
39         }
40
41         @Override
42         public DescriptionStatement createDeclared(final StmtContext<String, DescriptionStatement, ?> ctx) {
43             return new DescriptionStatementImpl(ctx);
44         }
45
46         @Override
47         public EffectiveStatement<String, DescriptionStatement> createEffective(final StmtContext<String, DescriptionStatement, EffectiveStatement<String, DescriptionStatement>> ctx) {
48             return new DescriptionEffectiveStatementImpl(ctx);
49         }
50
51         @Override
52         protected SubstatementValidator getSubstatementValidator() {
53             return SUBSTATEMENT_VALIDATOR;
54         }
55     }
56
57     @Nonnull @Override
58     public String getText() {
59         return rawArgument();
60     }
61 }