Added getParent() method to DataSchemaNode and DataNodeContainer. Fixed Bugs.
[yangtools.git] / code-generator / binding-java-api-generator / src / test / resources / compilation / augment-uses-to-augment / 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     container network-topology {
10         list topology {
11             key "topology-id";
12             leaf topology-id {
13                 type int32;
14             }
15             list link {
16                 key "link-id";
17                 uses link-attributes;
18             }
19         }
20     }
21
22     grouping link-attributes {
23         leaf link-id {
24             type int8;
25         }
26     }
27
28 }