UNPKG

@tripsnek/tmf

Version:

TypeScript Modeling Framework - A TypeScript port of the Eclipse Modeling Framework (EMF)

22 lines 720 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EPackageImpl = void 0; const epackage_1 = require("./epackage"); const ecorepackage_1 = require("./ecorepackage"); class EPackageImpl extends epackage_1.EPackage { ecorePackage; ecoreFactory; constructor(name, nsURI, nsPrefix) { super(name, nsURI, nsPrefix); this.ecorePackage = ecorepackage_1.EcorePackage.eINSTANCE; // this.ecoreFactory = EcoreFactory.eINSTANCE; } getEcorePackage() { return ecorepackage_1.EcorePackage.eINSTANCE; } eContainer() { return this.getESuperPackage(); } } exports.EPackageImpl = EPackageImpl; //# sourceMappingURL=epackageimpl.js.map