Add SchemaTreeAwareEffectiveStatement
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / ChoiceEffectiveStatement.java
index 08d9346778219b479bf0ade5c1de20cf64557280..6c555623fcdd892125bdfecc8dc411965ddf7110 100644 (file)
@@ -9,9 +9,9 @@ package org.opendaylight.yangtools.yang.model.api.stmt;
 
 import com.google.common.annotations.Beta;
 import org.opendaylight.yangtools.yang.common.QName;
-import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement;
 
 @Beta
-public interface ChoiceEffectiveStatement extends EffectiveStatement<QName, ChoiceStatement> {
+public interface ChoiceEffectiveStatement extends SchemaTreeEffectiveStatement<ChoiceStatement>,
+    SchemaTreeAwareEffectiveStatement<QName, ChoiceStatement> {
 
 }