You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/esmf-aspect-model-java-generator/src/main/java/org/eclipse/esmf/aspectmodel/java/AspectModelJavaUtil.java
Copy file name to clipboardExpand all lines: core/esmf-aspect-model-java-generator/src/main/java/org/eclipse/esmf/aspectmodel/java/JavaCodeGenerationConfig.java
+14-3Lines changed: 14 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -27,10 +27,12 @@
27
27
* @param jsonTypeInfo Corresponds to com.fasterxml.jackson.annotation.JsonTypeInfo.Id and selects which JsonTypeInfo kind is used
28
28
* @param packageName the package name that classes should be created in
29
29
* @param importTracker the instance of the tracker that tracks imports during code generation
30
-
* @param executeLibraryMacros determines whether template macros given in templateLibFile should be evaluatated
30
+
* @param executeLibraryMacros determines whether template macros given in templateLibFile should be evaluated
31
31
* @param templateLibFile a file containing velocity macros overriding sections in the default code templates
32
32
* @param namePrefix custom class name prefix
33
33
* @param namePostfix custom class name postfix
34
+
* @param enableSetters controls whether setters should be generated for the properties of the generated Java classes
35
+
* @param setterStyle the style of setters to be generated, if {@code enableSetters} is true
34
36
*/
35
37
@RecordBuilder
36
38
publicrecordJavaCodeGenerationConfig(
@@ -42,12 +44,18 @@ public record JavaCodeGenerationConfig(
Copy file name to clipboardExpand all lines: core/esmf-aspect-model-java-generator/src/main/java/org/eclipse/esmf/aspectmodel/java/metamodel/StaticMetaModelJavaArtifactGenerator.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -235,7 +235,7 @@ public JavaArtifact apply( final E element, final JavaCodeGenerationConfig confi
0 commit comments