Add ConfigStatementContainerDeclaredStatement
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / ListStatement.java
index 4838b643eaf3570d0145d5d6337e77dc68c61dc2..f2598bc4b0152ed7edf93dbe468c02a4059caf2e 100644 (file)
@@ -10,10 +10,11 @@ package org.opendaylight.yangtools.yang.model.api.stmt;
 import java.util.Collection;
 import javax.annotation.Nonnull;
 import javax.annotation.Nullable;
+import org.opendaylight.yangtools.yang.common.QName;
 
 public interface ListStatement extends DataDefinitionStatement, MultipleElementsGroup,
-        DataDefinitionContainer.WithReusableDefinitions, ConfigStatementContainer, ActionStatementContainer,
-        MustStatementContainer, NotificationStatementContainer {
+        DataDefinitionContainer.WithReusableDefinitions, ConfigStatementContainerDeclaredStatement<QName>,
+        ActionStatementContainer, MustStatementContainer, NotificationStatementContainer {
 
     @Nullable KeyStatement getKey();