Bug 4412: New yang parser effective statements cleanup
[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 org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.DescriptionEffectiveStatementImpl;
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.DescriptionStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
19 import javax.annotation.Nonnull;
20
21 public class DescriptionStatementImpl extends AbstractDeclaredStatement<String> implements DescriptionStatement {
22
23     protected DescriptionStatementImpl(
24             StmtContext<String, DescriptionStatement, ?> context) {
25         super(context);
26     }
27
28     public static class Definition extends AbstractStatementSupport<String,DescriptionStatement,EffectiveStatement<String,DescriptionStatement>> {
29
30         public Definition() {
31             super(Rfc6020Mapping.DESCRIPTION);
32         }
33
34         @Override
35         public String parseArgumentValue(StmtContext<?, ?, ?> ctx, String value) throws SourceException {
36             return value;
37         }
38
39         @Override
40         public DescriptionStatement createDeclared(StmtContext<String, DescriptionStatement, ?> ctx) {
41             return new DescriptionStatementImpl(ctx);
42         }
43
44         @Override
45         public EffectiveStatement<String, DescriptionStatement> createEffective(StmtContext<String, DescriptionStatement, EffectiveStatement<String, DescriptionStatement>> ctx) {
46             return new DescriptionEffectiveStatementImpl(ctx);
47         }
48     }
49
50     @Nonnull @Override
51     public String getText() {
52         return rawArgument();
53     }
54 }