[YANGTOOLS-105] A copy constructor for builder of list/container yang statements Created: 20/Mar/14 Updated: 10/Apr/22 Resolved: 28/Mar/14 |
|
| Status: | Resolved |
| Project: | yangtools |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Improvement | ||
| Reporter: | Martin Sunal | Assignee: | Unassigned |
| Resolution: | Duplicate | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Environment: |
Operating System: Windows |
||
| Issue Links: |
|
||||||||
| Description |
|
Builder which is generated for list and container yang statements should contain a copy constructor where parameter is type of build() method. public class GroupBuilder { public GroupBuilder(Group group) { } public Group build() { return new GroupImpl(this); }} |