import { IPSPanelEngine } from './ipspanel-engine'; import { IPSUIEngineParam } from '../../view/ipsuiengine-param'; import { PSModelObjectImpl } from '../../psmodel-object-impl'; export class PSPanelEngineImpl extends PSModelObjectImpl implements IPSPanelEngine { get codeName(): string { return this.M.codeName; } get dynaModelFilePath(): string { return this.M.dynaModelFilePath; } get engineCat(): string { return this.M.engineCat; } get engineType(): string { return this.M.engineType; } get mOSFilePath(): string { return this.M.mOSFilePath; } get memo(): string { return this.M.memo; } get name(): string { return this.M.name; } protected psuiengineparams: IPSUIEngineParam[] | null = null; getPSUIEngineParams(): IPSUIEngineParam[] | null { if (this.psuiengineparams == null) { this.psuiengineparams = this.fillChildListModel(this.M.getPSUIEngineParams, 'view.IPSUIEngineParam') as IPSUIEngineParam[]; } return this.psuiengineparams; } get psUIEngineParams(): IPSUIEngineParam[] | null { return this.getPSUIEngineParams(); } findPSUIEngineParam(objKey: any): IPSUIEngineParam | null { return this.getPSModel5('view.IPSUIEngineParam', this.getPSUIEngineParams(), objKey) as IPSUIEngineParam; } get rTMOSFilePath(): string { return this.M.rTMOSFilePath; } get userCat(): string { return this.M.userCat; } get userTag(): string { return this.M.userTag; } get userTag2(): string { return this.M.userTag2; } get userTag3(): string { return this.M.userTag3; } get userTag4(): string { return this.M.userTag4; } get cls(): string { return 'PSPanelEngineImpl'; } instanceof(cls: string): boolean { if (cls == 'IPSModelObject' || cls == 'IPSObject' || cls == 'control.panel.IPSPanelEngine' || cls == 'control.panel.IPSPanelObject') return true; return super.instanceof(cls); } }