@tripsnek/tmf
Version:
TypeScript Modeling Framework - A TypeScript port of the Eclipse Modeling Framework (EMF)
9 lines • 352 B
TypeScript
import { EStructuralFeature } from './estructural-feature';
export interface EReference extends EStructuralFeature {
isContainer(): boolean;
isContainment(): boolean;
setContainment(containment: boolean): void;
getEOpposite(): EReference | undefined;
setEOpposite(value: EReference): void;
}
//# sourceMappingURL=ereference.d.ts.map