Bug 3670 (part 3/5): Use of new statement parser in yang-maven-plugin
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / builder / api / AugmentationSchemaBuilder.java
index 6ebd25fc4d8efc760c0647b53a420aa28a47b084..58beef0e872872b61e1a9512096f58fb116232ad 100644 (file)
@@ -36,7 +36,7 @@ public interface AugmentationSchemaBuilder extends DataNodeContainerBuilder,Docu
      * for a particular instance, then the node defined by the parent data
      * definition statement is valid; otherwise, it is not.
      *
-     * @param whenCondition
+     * @param whenCondition string representation of when condition
      */
     void addWhenCondition(String whenCondition);
 
@@ -72,7 +72,7 @@ public interface AugmentationSchemaBuilder extends DataNodeContainerBuilder,Docu
     /**
      * Set information about augmentation process.
      *
-     * @param resolved
+     * @param resolved information about augmentation process
      */
     void setResolved(boolean resolved);
 
@@ -88,13 +88,16 @@ public interface AugmentationSchemaBuilder extends DataNodeContainerBuilder,Docu
     /**
      *  Set true if target of augment is unsupported (e.g. node in body of extension).
      *  In such case, augmentation is skipped and AugmentationSchema is not built.
+     *
+     *  @param unsupportedTarget information about target of augment statement
      */
-    public void setUnsupportedTarget(boolean unsupportedTarget);
+    void setUnsupportedTarget(boolean unsupportedTarget);
 
     /**
      *  Return true if target of augment is unsupported (e.g. node in body of extension).
      *  In such case, augmentation is skipped and AugmentationSchema is not built.
+     *
+     *  @return information about target of augment statement
      */
-    public boolean isUnsupportedTarget();
-
+    boolean isUnsupportedTarget();
 }