UNPKG

714 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const javaUtil_1 = require("./java/javaUtil");
4class CodegenModel {
5 constructor() {
6 this.vars = [];
7 this.requiredVars = [];
8 this.optionalVars = [];
9 this.readOnlyVars = [];
10 this.readWriteVars = [];
11 this.parentVars = [];
12 this.mandatory = javaUtil_1.newHashSet();
13 this.imports = javaUtil_1.newHashSet();
14 this.hasOnlyReadOnly = true;
15 this.allVars = this.vars;
16 this.allMandatory = this.mandatory;
17 }
18 toString() {
19 return `${this.name}(${this.classname})`;
20 }
21}
22exports.default = CodegenModel;
23//# sourceMappingURL=CodegenModel.js.map
\No newline at end of file