f3eb3c2e0a856f955e8c8908454fd5a9d2f0c593
[yangtools.git] / yang / yang-parser-rfc7950 / src / main / java / org / opendaylight / yangtools / yang / parser / rfc7950 / stmt / if_feature / IfFeatureStatementImpl.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.rfc7950.stmt.if_feature;
9
10 import static com.google.common.base.Verify.verifyNotNull;
11
12 import java.util.Set;
13 import java.util.function.Predicate;
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.model.api.stmt.IfFeatureStatement;
16 import org.opendaylight.yangtools.yang.parser.spi.meta.AbstractDeclaredStatement;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.StmtContext;
18
19 final class IfFeatureStatementImpl extends AbstractDeclaredStatement<Predicate<Set<QName>>>
20         implements IfFeatureStatement {
21     IfFeatureStatementImpl(final StmtContext<Predicate<Set<QName>>, IfFeatureStatement, ?> context) {
22         super(context);
23     }
24
25     @Override
26     public Predicate<Set<QName>> getIfFeaturePredicate() {
27         // FIXME: YANGTOOLS-908: verifyNotNull() should not be needed here
28         return verifyNotNull(argument());
29     }
30 }