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.when;
10 import org.opendaylight.yangtools.yang.model.api.stmt.WhenStatement;
11 import org.opendaylight.yangtools.yang.parser.rfc7950.stmt.AbstractDeclaredStatement.WithArgument;
12 import org.opendaylight.yangtools.yang.xpath.api.YangXPathExpression.QualifiedBound;
14 final class EmptyWhenStatement extends WithArgument<QualifiedBound> implements WhenStatement {
15 EmptyWhenStatement(final String rawArgument, final QualifiedBound argument) {
16 super(rawArgument, argument);