import { IPSAppMethodDTO } from './ipsapp-method-dto'; import { IPSAppMethodDTOField } from './ipsapp-method-dtofield'; import { PSModelObjectImpl } from '../psmodel-object-impl'; export class PSAppMethodDTOImpl extends PSModelObjectImpl implements IPSAppMethodDTO { get codeName(): string { return this.M.codeName; } get dynaModelFilePath(): string { return this.M.dynaModelFilePath; } get mOSFilePath(): string { return this.M.mOSFilePath; } get memo(): string { return this.M.memo; } get name(): string { return this.M.name; } protected psappmethoddtofields: IPSAppMethodDTOField[] | null = null; getPSAppMethodDTOFields(): IPSAppMethodDTOField[] | null { if (this.psappmethoddtofields == null) { this.psappmethoddtofields = this.fillChildListModel(this.M.getPSAppMethodDTOFields, 'app.IPSAppMethodDTOField') as IPSAppMethodDTOField[]; } return this.psappmethoddtofields; } get psAppMethodDTOFields(): IPSAppMethodDTOField[] | null { return this.getPSAppMethodDTOFields(); } findPSAppMethodDTOField(objKey: any): IPSAppMethodDTOField | null { return this.getPSModel5('app.IPSAppMethodDTOField', this.getPSAppMethodDTOFields(), objKey) as IPSAppMethodDTOField; } get rTMOSFilePath(): string { return this.M.rTMOSFilePath; } get sourceType(): 'DE' | 'DYNAMODEL' | 'DEACTIONINPUT' | 'DEFILTER' | 'REFDE' | 'DEDATASETINPUT' { return this.M.sourceType; } get type(): 'DEFAULT' | 'DEACTIONINPUT' | 'DEFILTER' | 'DEDATASETINPUT' { return this.M.type; } 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 'PSAppMethodDTOImpl'; } instanceof(cls: string): boolean { if (cls == 'app.IPSAppMethodDTO') return true; return super.instanceof(cls); } }