Generated Files
Default File Locations¶
- src/main/java for Java source code
You can change the default directories by setting generator options.
Files for DTO Classes¶
Modeling | File Naming | Description |
---|---|---|
layout [name] | [Name]Dto.java | This DTO class has one property for every modeled display. |
display [name] | [Name]Dto.java | This DTO class has one property for every modeled component. |
You find all DTO classes that are related to a layout and all of its displays in the package
[namespace of layout].[name of layout].dto
.
Files for Test-Support¶
There is no test support generated for DTO classes. The DTO classes are nothing else than simple Java beans. The do not contain any business logic. Normally, you do not manually write code in them.