@tripsnek/tmf
Version:
TypeScript Modeling Framework - A TypeScript port of the Eclipse Modeling Framework (EMF)
20 lines • 635 B
JavaScript
import { EStructuralFeatureImpl } from './estructural-feature-impl';
export class EAttributeImpl extends EStructuralFeatureImpl {
representsId = false;
// private eAttributeType!: EDataType;
constructor(name, containingEClass, attrType) {
super(name, attrType);
// this.eAttributeType = attrType!;
this.setEContainingClass(containingEClass);
}
// public getEAttributeType(): EDataType {
// return this.eAttributeType;
// }
isId() {
return this.representsId;
}
setId(value) {
this.representsId = value;
}
}
//# sourceMappingURL=eattribute-impl.js.map