Added getParent() method to DataSchemaNode and DataNodeContainer. Fixed Bugs.
[yangtools.git] / code-generator / binding-java-api-generator / src / test / resources / compilation / augment-of-augment / bar.yang
1 module bar {
2     yang-version 1;
3     namespace "urn:opendaylight:bar";
4     prefix "bar";
5
6     import foo { prefix fo; revision-date 2013-10-08; }
7
8     revision "2013-10-08" {
9     }
10
11     augment "/fo:update/fo:path-attributes" {
12         container mp-unreach-nlri {
13             container withdrawn-routes {
14                 uses destination;
15             }
16         }
17     }
18
19     grouping destination {
20         choice destination-type {
21             case destination-ip {
22                 leaf-list prefixes {
23                     type string;
24                 }
25             }
26         }
27     }
28
29 }