Added getParent() method to DataSchemaNode and DataNodeContainer. Fixed Bugs.
[yangtools.git] / code-generator / binding-java-api-generator / src / test / resources / compilation / augment-under-uses / bar.yang
1 module bar {
2     yang-version 1;
3     namespace "urn:opendaylight:bar";
4     prefix "bar";
5
6     revision "2013-10-08" {
7     }
8
9     grouping basic-explicit-route-subobjects {
10         choice subobject-type {
11             case ip-prefix {
12             }
13             case label {
14             }
15         }
16     }
17
18     grouping explicit-route-subobjects {
19         uses basic-explicit-route-subobjects;
20     }
21
22 }