Add SchemaTreeAwareEffectiveStatement
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / NotificationEffectiveStatement.java
index 7c32365fe459f19f486e55cec52d288a4c08e8ab..2479d01ca99ab3245d7970f89c8abbcefd2159fc 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 NotificationEffectiveStatement extends EffectiveStatement<QName, NotificationStatement> {
+public interface NotificationEffectiveStatement extends SchemaTreeEffectiveStatement<NotificationStatement>,
+    SchemaTreeAwareEffectiveStatement<QName, NotificationStatement> {
 
 }