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 / baz.yang
1 module baz {
2     yang-version 1;
3     namespace "urn:opendaylight.baz";
4     prefix "baz";
5
6     import foo {
7         prefix "fo";
8         revision-date 2013-10-08;
9     }
10
11     import bar {
12         prefix "br";
13         revision-date 2013-10-08;
14     }
15
16     revision "2013-10-08" {
17     }
18
19
20
21     augment "/br:network-topology/br:topology/br:link/fo:igp-link-attributes" {
22         uses link-attributes;
23     }
24
25     grouping link-attributes {
26         container ospf-link-attributes {
27             leaf multi-topology-id {
28                 type uint8 {
29                     range "0..127";
30                 }
31             }
32         }
33     }
34
35 }