Remove unused imports
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / ReferenceStatementImpl.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 javax.annotation.Nonnull;
11 import org.opendaylight.yangtools.yang.model.api.Rfc6020Mapping;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.ReferenceStatement;
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.stmt.rfc6020.effective.ReferenceEffectiveStatementImpl;
18
19 public class ReferenceStatementImpl extends AbstractDeclaredStatement<String> implements ReferenceStatement {
20
21     protected ReferenceStatementImpl(final StmtContext<String, ReferenceStatement, ?> context) {
22         super(context);
23     }
24
25     public static class Definition extends AbstractStatementSupport<String,ReferenceStatement,EffectiveStatement<String,ReferenceStatement>> {
26
27         public Definition() {
28             super(Rfc6020Mapping.REFERENCE);
29         }
30
31         @Override
32         public String parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
33             return value;
34         }
35
36         @Override
37         public ReferenceStatement createDeclared(final StmtContext<String, ReferenceStatement, ?> ctx) {
38             return new ReferenceStatementImpl(ctx);
39         }
40
41         @Override
42         public EffectiveStatement<String, ReferenceStatement> createEffective(
43                 final StmtContext<String, ReferenceStatement, EffectiveStatement<String, ReferenceStatement>> ctx) {
44             return new ReferenceEffectiveStatementImpl(ctx);
45         }
46     }
47
48     @Nonnull @Override
49     public String getText() {
50         return rawArgument();
51     }
52 }