X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-parser-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fparser%2Fbuilder%2Fapi%2FAugmentationSchemaBuilder.java;h=58beef0e872872b61e1a9512096f58fb116232ad;hb=277461c62786e8b88a60aaa3f195f0a852b87f30;hp=a3eab72ba12e9006f8b7da789ff13a3934008e15;hpb=2f2338abee4e4dbfe0ad7d28362fd8aa511494aa;p=yangtools.git diff --git a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/builder/api/AugmentationSchemaBuilder.java b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/builder/api/AugmentationSchemaBuilder.java index a3eab72ba1..58beef0e87 100644 --- a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/builder/api/AugmentationSchemaBuilder.java +++ b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/builder/api/AugmentationSchemaBuilder.java @@ -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,12 +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 */ 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 */ boolean isUnsupportedTarget(); }