Bug 5942: When condition of uses node is not exposed by the YANG parser
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / DocumentedNode.java
index 36acbe9b5168c770bbff5558bf1d736b065bafea..f4309255843a28678efa7a00db164208b0c77733 100644 (file)
@@ -7,6 +7,8 @@
  */
 package org.opendaylight.yangtools.yang.model.api;
 
+import javax.annotation.Nullable;
+
 /**
  *
  * Node which can have documentation assigned.
@@ -40,5 +42,6 @@ public interface DocumentedNode {
      * @return status of this node which represents the argument of the YANG
      *         <code>status</code> substatement
      */
+    @Nullable
     Status getStatus();
 }