Add ConfigStatementContainerDeclaredStatement
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / stmt / AnydataStatement.java
index fa7aa8aa57b9726bef7ce68951c0459ee00772e3..326d31fd94b350c72b465bce5ffac3456c6cc5d4 100644 (file)
@@ -5,10 +5,10 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.yangtools.yang.model.api.stmt;
 
 import com.google.common.annotations.Beta;
+import org.opendaylight.yangtools.yang.common.QName;
 
 /**
  * The "anydata" statement defines an interior node in the schema tree. It takes one argument, which is an identifier,
@@ -21,7 +21,7 @@ import com.google.common.annotations.Beta;
  * of this document.
  */
 @Beta
-public interface AnydataStatement extends DataDefinitionStatement, ConfigStatementContainer,
+public interface AnydataStatement extends DataDefinitionStatement, ConfigStatementContainerDeclaredStatement<QName>,
         MandatoryStatementContainer, MustStatementContainer {
 
 }