Skip to content

Commit

Permalink
add for CodegenModel subclasses
Browse files Browse the repository at this point in the history
  • Loading branch information
kota65535 committed Feb 23, 2024
1 parent 9aa12f6 commit 28fcdfb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -965,6 +965,7 @@ public ExtendedCodegenModel(CodegenModel cm) {
this.isEnum = cm.isEnum;
this.hasRequired = cm.hasRequired;
this.hasOptional = cm.hasOptional;
this.hasReadOnly = cm.hasReadOnly;
this.isArray = cm.isArray;
this.hasChildren = cm.hasChildren;
this.hasOnlyReadOnly = cm.hasOnlyReadOnly;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,7 @@ public CodegenArrayModel(CodegenModel cm, ArraySchema schema) {
this.isEnum = cm.isEnum;
this.hasRequired = cm.hasRequired;
this.hasOptional = cm.hasOptional;
this.hasReadOnly = cm.hasReadOnly;
this.isArray = cm.isArray;
this.hasChildren = cm.hasChildren;
this.hasOnlyReadOnly = cm.hasOnlyReadOnly;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1454,6 +1454,7 @@ public ExtendedCodegenModel(CodegenModel cm) {
this.allVars = cm.allVars;
this.requiredVars = cm.requiredVars;
this.optionalVars = cm.optionalVars;
this.hasReadOnly = cm.hasReadOnly;
this.readOnlyVars = cm.readOnlyVars;
this.readWriteVars = cm.readWriteVars;
this.parentVars = cm.parentVars;
Expand Down

0 comments on commit 28fcdfb

Please sign in to comment.