Revert Merge "Bug 2366: new parser - Types & TypeDefs"
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / IdentityRefSpecificationImpl.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.spi.source.SourceException;
11 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractStatementSupport;
12 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
13 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
14 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
15 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
16 import org.opendaylight.yangtools.yang.model.api.stmt.TypeStatement;
17
18 public class IdentityRefSpecificationImpl extends
19         AbstractDeclaredStatement<String> implements
20         TypeStatement.IdentityRefSpecification {
21
22     protected IdentityRefSpecificationImpl(
23             StmtContext<String, TypeStatement.IdentityRefSpecification, ?> context) {
24         super(context);
25     }
26
27     public static class Definition
28             extends
29             AbstractStatementSupport<String, TypeStatement.IdentityRefSpecification, EffectiveStatement<String, TypeStatement.IdentityRefSpecification>> {
30
31         public Definition() {
32             super(Rfc6020Mapping.BASE);
33         }
34
35         @Override
36         public String parseArgumentValue(StmtContext<?, ?, ?> ctx, String value)
37                 throws SourceException {
38             return value;
39         }
40
41         @Override
42         public TypeStatement.IdentityRefSpecification createDeclared(
43                 StmtContext<String, TypeStatement.IdentityRefSpecification, ?> ctx) {
44             return new IdentityRefSpecificationImpl(ctx);
45         }
46
47         @Override
48         public EffectiveStatement<String, TypeStatement.IdentityRefSpecification> createEffective(
49                 StmtContext<String, TypeStatement.IdentityRefSpecification, EffectiveStatement<String, TypeStatement.IdentityRefSpecification>> ctx) {
50             throw new UnsupportedOperationException();
51         }
52     }
53
54     @Override
55     public String getName() {
56         return argument();
57     }
58
59 }