Bug 2366 - Effective statments impl merge, retest & bugfix
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / InstanceIdentifierSpecificationImpl.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.RequireInstanceStatement;
11
12 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
13 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
14 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
15 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
16 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
17 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
18 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement;
19 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.type.InstanceIdentifierSpecificationEffectiveStatementImpl;
20
21 public class InstanceIdentifierSpecificationImpl extends
22         AbstractDeclaredStatement<String> implements
23         TypeStatement.InstanceIdentifierSpecification {
24
25     protected InstanceIdentifierSpecificationImpl(
26             StmtContext<String, TypeStatement.InstanceIdentifierSpecification, ?> ctx) {
27         super(ctx);
28     }
29
30     public static class Definition
31             extends
32             AbstractStatementSupport<String, TypeStatement.InstanceIdentifierSpecification, EffectiveStatement<String, TypeStatement.InstanceIdentifierSpecification>> {
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.InstanceIdentifierSpecification createDeclared(
46                 StmtContext<String, TypeStatement.InstanceIdentifierSpecification, ?> ctx) {
47             return new InstanceIdentifierSpecificationImpl(ctx);
48         }
49
50         @Override
51         public EffectiveStatement<String, TypeStatement.InstanceIdentifierSpecification> createEffective(
52                 StmtContext<String, TypeStatement.InstanceIdentifierSpecification, EffectiveStatement<String, TypeStatement.InstanceIdentifierSpecification>> ctx) {
53             return new InstanceIdentifierSpecificationEffectiveStatementImpl(ctx);
54         }
55     }
56
57     @Override
58     public String getName() {
59         return argument();
60     }
61
62     @Override
63     public RequireInstanceStatement getRequireInstance() {
64         return firstDeclared(RequireInstanceStatement.class);
65     }
66
67 }