Implemented ordering of yang module data nodes. Added Comparators utility class.
[controller.git] / opendaylight / sal / yang-prototype / yang / yang-model-api / src / main / java / org / opendaylight / controller / yang / model / api / AugmentationTarget.java
index 77ab5a3674fcd1737186a56ca95a2fb375aafa07..7e29c6210d93ad475c2e3d58f8ab2dd524e030e3 100644 (file)
@@ -9,11 +9,16 @@ package org.opendaylight.controller.yang.model.api;
 \r
 import java.util.Set;\r
 \r
+/**\r
+ * Interface for all nodes which are possible targets of augmentation. The\r
+ * target node of augmentation MUST be either a container, list, choice, case,\r
+ * input, output, or notification node.\r
+ */\r
 public interface AugmentationTarget {\r
+\r
     /**\r
-     * Returns a set of augmentations targeting this element.\r
-     * \r
-     * @return\r
+     * @return set of augmentations targeting this element.\r
      */\r
     Set<AugmentationSchema> getAvailableAugmentations();\r
+\r
 }\r