2 * Copyright (c) 2020 PANTHEON.tech, s.r.o. and others. All rights reserved.
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
8 package org.opendaylight.yangtools.yang.parser.rfc7950.stmt.length;
10 import java.util.List;
11 import org.opendaylight.yangtools.yang.model.api.stmt.LengthStatement;
12 import org.opendaylight.yangtools.yang.model.api.stmt.ValueRange;
13 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.AbstractDeclaredStatement.WithArgument;
15 final class EmptyLengthStatement extends WithArgument<List<ValueRange>> implements LengthStatement {
16 EmptyLengthStatement(final String rawArgument, final List<ValueRange> argument) {
17 super(rawArgument, argument);