Added getParent() method to DataSchemaNode and DataNodeContainer. Fixed Bugs.
[yangtools.git] / code-generator / binding-java-api-generator / src / test / resources / compilation / augment-of-augment / foo.yang
1 module foo {
2     yang-version 1;
3     namespace "urn:opendaylight:foo";
4     prefix "foo";
5
6     revision "2013-10-08" {
7     }
8
9     grouping path-attributes {
10         container origin {
11             leaf value {
12                 type string;
13             }
14         }
15     }
16
17     notification update {
18         container path-attributes {
19             uses path-attributes;
20         }
21     }
22
23 }