Revert "Fix JDK9 compilation"
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / AnyXmlSchemaNode.java
index 7ac72d8d517d7d2e653f4706a995061f9537a0b9..6b1ef8e2e92913d0388cf11b8c229755985a4b17 100644 (file)
@@ -8,17 +8,14 @@
 package org.opendaylight.yangtools.yang.model.api;
 
 /**
- * The "anyxml" interface defines an interior node in the schema tree. It takes
- * one argument, which is an identifier represented by QName inherited from
- * {@link SchemaNode}, followed by a block of substatements that holds detailed
- * anyxml information. The substatements are defined in {@link DataSchemaNode} <br>
- * <br>
- * This interface was modeled according to definition in <a
- * href="https://tools.ietf.org/html/rfc6020#section-7.10">[RFC-6020] The anyxml
- * Statement</a>
- *
+ * The "anyxml" interface defines an interior node in the schema tree. It takes one argument, which is an identifier
+ * represented by QName inherited from {@link SchemaNode}, followed by a block of substatements that holds detailed
+ * anyxml information. The substatements are defined in {@link DataSchemaNode}.
  *
+ * <p>
+ * This interface was modeled according to definition in
+ * <a href="https://tools.ietf.org/html/rfc6020#section-7.10">[RFC-6020] The anyxml Statement</a>
  */
-public interface AnyXmlSchemaNode extends DataSchemaNode {
+public interface AnyXmlSchemaNode extends DataSchemaNode, MandatoryAware, MustConstraintAware {
 
 }