Bug 3067: Fixed missing argument in message.
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / EnumSpecificationImpl.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.stmt.EnumStatement;
11
12 import java.util.Collection;
13 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
14 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
17 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
18 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
19 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement;
20 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.EnumSpecificationEffectiveStatementImpl;
21
22 public class EnumSpecificationImpl extends AbstractDeclaredStatement<String>
23         implements TypeStatement.EnumSpecification {
24
25     protected EnumSpecificationImpl(
26             StmtContext<String, TypeStatement.EnumSpecification, ?> context) {
27         super(context);
28     }
29
30     public static class Definition
31             extends
32             AbstractStatementSupport<String, TypeStatement.EnumSpecification, EffectiveStatement<String, TypeStatement.EnumSpecification>> {
33
34         public Definition() {
35             super(Rfc6020Mapping.TYPE);
36         }
37
38         @Override
39         public String parseArgumentValue(StmtContext<?, ?, ?> ctx, String value)
40                 throws SourceException {
41             return value;
42         }
43
44         @Override
45         public TypeStatement.EnumSpecification createDeclared(
46                 StmtContext<String, TypeStatement.EnumSpecification, ?> ctx) {
47             return new EnumSpecificationImpl(ctx);
48         }
49
50         @Override
51         public EffectiveStatement<String, TypeStatement.EnumSpecification> createEffective(
52                 StmtContext<String, TypeStatement.EnumSpecification, EffectiveStatement<String, TypeStatement.EnumSpecification>> ctx) {
53             return new EnumSpecificationEffectiveStatementImpl(ctx);
54         }
55     }
56
57     @Override
58     public String getName() {
59         return argument();
60     }
61
62     @Override
63     public Collection<? extends EnumStatement> getEnums() {
64         return allDeclared(EnumStatement.class);
65     }
66
67 }