Convert length statement
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / length / EmptyLengthEffectiveStatement.java
1 /*
2  * Copyright (c) 2020 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.rfc7950.stmt.length;
9
10 import java.util.List;
11 import org.opendaylight.yangtools.yang.model.api.stmt.LengthEffectiveStatement;
12 import org.opendaylight.yangtools.yang.model.api.stmt.LengthStatement;
13 import org.opendaylight.yangtools.yang.model.api.stmt.ValueRange;
14 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.AbstractDeclaredEffectiveStatement.DefaultArgument;
15 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.EffectiveStatementMixins.ConstraintMetaDefinitionMixin;
16
17 final class EmptyLengthEffectiveStatement extends DefaultArgument<List<ValueRange>, LengthStatement>
18         implements LengthEffectiveStatement, ConstraintMetaDefinitionMixin<List<ValueRange>, LengthStatement> {
19     EmptyLengthEffectiveStatement(final LengthStatement declared) {
20         super(declared);
21     }
22 }