Fixed utility method to validate java package name.
[yangtools.git] / code-generator / binding-java-api-generator / src / test / resources / compilation / augment-under-uses / test.yang
1 module test {
2     yang-version 1;
3     namespace "urn:opendaylight:test";
4     prefix "t";
5
6     revision "2013-10-08" {
7     }
8
9     grouping object {
10         container nodes {
11         }
12     }
13
14     grouping open-object {
15         uses object {
16             augment "nodes" {
17                 container links {
18                     leaf id {
19                         type string;
20                     }
21                 }
22             }
23         }
24     }
25
26 }