Bug 3067: Fixed missing argument in message.
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / BinarySpecificationImpl.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.LengthStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement;
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.source.SourceException;
18
19 import javax.annotation.Nonnull;
20 import javax.annotation.Nullable;
21
22 public class BinarySpecificationImpl extends AbstractDeclaredStatement<String> implements TypeStatement.BinarySpecification {
23
24     protected BinarySpecificationImpl(StmtContext<String, ?, ?> context) {
25         super(context);
26     }
27
28     public static class Definition extends AbstractStatementSupport<String, BinarySpecification, EffectiveStatement<String, BinarySpecification>> {
29
30         public Definition() {
31             super(Rfc6020Mapping.TYPE);
32         }
33
34         @Override
35         public String parseArgumentValue(StmtContext<?, ?, ?> ctx, String value) throws SourceException {
36             return value;
37         }
38
39         @Override
40         public BinarySpecification createDeclared(StmtContext<String, BinarySpecification, ?> ctx) {
41             return new BinarySpecificationImpl(ctx);
42         }
43
44         @Override
45         public EffectiveStatement<String, BinarySpecification> createEffective(StmtContext<String, BinarySpecification, EffectiveStatement<String, BinarySpecification>> ctx) {
46             return null;
47         }
48     }
49
50     @Nullable
51     @Override
52     public LengthStatement getLength() {
53         return firstDeclared(LengthStatement.class);
54     }
55
56     @Nonnull
57     @Override
58     public String getName() {
59         return argument();
60     }
61 }