import { IPSDERMultiInherit } from './ipsdermulti-inherit'; import { PSDERInheritImpl } from './psderinherit-impl'; export class PSDERMultiInheritImpl extends PSDERInheritImpl implements IPSDERMultiInherit { get singleInherit(): boolean { return this.M.singleInherit != null ? this.M.singleInherit : false; } get cls(): string { return 'PSDERMultiInheritImpl'; } instanceof(cls: string): boolean { if (cls == 'dataentity.der.IPSDERMultiInherit') return true; return super.instanceof(cls); } }