Implemented refine statement parsing.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / main / java / org / opendaylight / controller / yang / model / parser / builder / api / AugmentationTargetBuilder.java
index 7b4a1918653b10b1087e39d9c21e5b7b29b7c82c..0b435c15e15b62fec93ae7f11de6e58e110c4e6a 100644 (file)
@@ -7,17 +7,17 @@
  */
 package org.opendaylight.controller.yang.model.parser.builder.api;
 
-import org.opendaylight.controller.yang.model.api.AugmentationSchema;
-
 /**
  * Interface for builders of those nodes, which can be augmentation targets.
  */
 public interface AugmentationTargetBuilder {
 
-       /**
-        * Add augment, which points to this node.
-        * @param augment augment which points to this node
-        */
-       void addAugmentation(AugmentationSchema augment);
+    /**
+     * Add augment, which points to this node.
+     *
+     * @param augment
+     *            augment which points to this node
+     */
+    void addAugmentation(AugmentationSchemaBuilder augment);
 
 }