import { IPSInheritDEField } from './ipsinherit-defield'; import { PSLinkDEFieldImpl } from './pslink-defield-impl'; export class PSInheritDEFieldImpl extends PSLinkDEFieldImpl implements IPSInheritDEField { get inheritDEField(): boolean { return this.M.inheritDEField; } get phisicalDEField(): boolean { return this.M.phisicalDEField != null ? this.M.phisicalDEField : true; } get cls(): string { return 'PSInheritDEFieldImpl'; } instanceof(cls: string): boolean { if (cls == 'dataentity.defield.IPSInheritDEField') return true; return super.instanceof(cls); } }