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 / AugmentationSchemaBuilder.java
index 71cf7a19e9c0aae311a696730e8620385c564abb..ef54c0bc6b7274a3969386fd936fff9a71a1f65f 100644 (file)
@@ -16,12 +16,13 @@ import org.opendaylight.controller.yang.model.api.Status;
 /**
  * Interface for builders of 'augment' statement.
  */
-public interface AugmentationSchemaBuilder extends ChildNodeBuilder, TypeDefinitionAwareBuilder {
+public interface AugmentationSchemaBuilder extends ChildNodeBuilder {
 
        void setDescription(String description);
        void setReference(String reference);
        void setStatus(Status status);
 
+       String getTargetPathAsString();
        SchemaPath getTargetPath();
 
        Set<DataSchemaNodeBuilder> getChildNodes();