Introduce WhenConditionAware
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / UsesNode.java
index b8042c80bb52d1aa4bbb38738833bf46519d53ba..b96d2b2bc0449e73e44eaa60cb36fece65980514 100644 (file)
@@ -9,34 +9,31 @@ package org.opendaylight.yangtools.yang.model.api;
 
 import java.util.Map;
 import java.util.Set;
+import javax.annotation.Nonnull;
+import org.opendaylight.yangtools.yang.model.api.DocumentedNode.WithStatus;
 
 /**
- * Contains the methods for getting data and checking properties of the YANG
- * <code>uses</code> substatement.
- *
+ * Contains the methods for getting data and checking properties of the YANG <code>uses</code> substatement.
  */
-public interface UsesNode extends YangNode {
-
-    YangNode getParent();
+public interface UsesNode extends WhenConditionAware, WithStatus {
 
     /**
      * Returns the schema path to used grouping.
      *
      * @return schema path to 'grouping' on which this 'uses' statement points
      */
-    SchemaPath getGroupingPath();
+    @Nonnull SchemaPath getGroupingPath();
 
     /**
-     *
-     * Returns agumentations which were specified in this uses node.
+     * Returns augmentations which were specified in this uses node.
      *
      * @return Set of augment statements defined under this uses node
      */
-    Set<AugmentationSchema> getAugmentations();
+    @Nonnull Set<AugmentationSchemaNode> getAugmentations();
 
     /**
      * Returns <code>true</code> if the data node was added by augmentation,
-     * otherwise returns <code>false</code>
+     * otherwise returns <code>false</code>.
      *
      * @return <code>true</code> if the data node was added by augmentation,
      *         otherwise returns <code>false</code>
@@ -45,7 +42,7 @@ public interface UsesNode extends YangNode {
 
     /**
      * Returns <code>true</code> if the data node was added by uses statement,
-     * otherwise returns <code>false</code>
+     * otherwise returns <code>false</code>.
      *
      * @return <code>true</code> if the data node was added by uses statement,
      *         otherwise returns <code>false</code>
@@ -59,5 +56,5 @@ public interface UsesNode extends YangNode {
      * @return Map, where key is schema path of refined node and value is
      *         refined node
      */
-    Map<SchemaPath, SchemaNode> getRefines();
+    @Nonnull Map<SchemaPath, SchemaNode> getRefines();
 }