be5c7543da94f0284427f12fb579a8f80b2be818
[yangtools.git] / yang / yang-parser-spi / src / main / java / org / opendaylight / yangtools / yang / parser / spi / meta / AbstractVoidStatementSupport.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o. 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.spi.meta;
9
10 import com.google.common.annotations.Beta;
11 import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement;
12 import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
13 import org.opendaylight.yangtools.yang.model.api.meta.StatementDefinition;
14
15 /**
16  * Class providing necessary support for processing a YANG statements which does not have an argument. In addition
17  * to functions of {@link AbstractStatementSupport}, it provide the argument value.
18  *
19  * @param <D> Declared Statement representation
20  * @param <E> Effective Statement representation
21  */
22 @Beta
23 public abstract class AbstractVoidStatementSupport<D extends DeclaredStatement<Void>,
24         E extends EffectiveStatement<Void, D>> extends AbstractStatementSupport<Void, D, E> {
25
26     protected AbstractVoidStatementSupport(final StatementDefinition publicDefinition) {
27         super(publicDefinition);
28     }
29
30     protected AbstractVoidStatementSupport(final StatementDefinition publicDefinition, final CopyPolicy copyPolicy) {
31         super(publicDefinition, copyPolicy);
32     }
33
34     @Override
35     public final Void parseArgumentValue(final StmtContext<?, ?, ?> ctx, final String value) {
36         return null;
37     }
38 }