import { IPSDELogic } from './ipsdelogic'; import { IPSDELogicParam } from './ipsdelogic-param'; import { IPSDESysUtilLogic } from './ipsdesys-util-logic'; import { PSDELogicNodeImpl } from './psdelogic-node-impl'; import { IPSSysUtil } from '../../res/ipssys-util'; export class PSDESysUtilLogicImpl extends PSDELogicNodeImpl implements IPSDESysUtilLogic { protected dstpsdelogicparam: IPSDELogicParam | null = null; getDstPSDELogicParam(): IPSDELogicParam | null { if (this.dstpsdelogicparam != null) return this.dstpsdelogicparam; const value = this.M.getDstPSDELogicParam; if (value == null) { return null; } const ipsdelogic = this.getParentPSModelObject('dataentity.logic.IPSDELogic') as IPSDELogic; if (ipsdelogic != null) { this.dstpsdelogicparam = ipsdelogic.findPSDELogicParam(value); } return this.dstpsdelogicparam; } get dstPSDELogicParam(): IPSDELogicParam | null { return this.getDstPSDELogicParam(); } getDstPSDELogicParamMust(): IPSDELogicParam { const value = this.getDstPSDELogicParam(); if (value == null) { throw new Error('未指定目标逻辑参数对象'); } return value; } protected pssysutil: IPSSysUtil | null = null; getPSSysUtil(): IPSSysUtil | null { if (this.pssysutil != null) return this.pssysutil; const value = this.M.getPSSysUtil; if (value == null) { return null; } this.pssysutil = this.getPSModel4('res.IPSSysUtil', value, 'getPSSysUtil') as IPSSysUtil; return this.pssysutil; } get psSysUtil(): IPSSysUtil | null { return this.getPSSysUtil(); } getPSSysUtilMust(): IPSSysUtil { const value = this.getPSSysUtil(); if (value == null) { throw new Error('未指定系统预置功能组件对象'); } return value; } protected retpsdelogicparam: IPSDELogicParam | null = null; getRetPSDELogicParam(): IPSDELogicParam | null { if (this.retpsdelogicparam != null) return this.retpsdelogicparam; const value = this.M.getRetPSDELogicParam; if (value == null) { return null; } const ipsdelogic = this.getParentPSModelObject('dataentity.logic.IPSDELogic') as IPSDELogic; if (ipsdelogic != null) { this.retpsdelogicparam = ipsdelogic.findPSDELogicParam(value); } return this.retpsdelogicparam; } get retPSDELogicParam(): IPSDELogicParam | null { return this.getRetPSDELogicParam(); } getRetPSDELogicParamMust(): IPSDELogicParam { const value = this.getRetPSDELogicParam(); if (value == null) { throw new Error('未指定返回值绑定逻辑参数对象'); } return value; } get utilAction(): string { return this.M.utilAction; } get cls(): string { return 'PSDESysUtilLogicImpl'; } instanceof(cls: string): boolean { if (cls == 'dataentity.logic.IPSDESysUtilLogic') return true; return super.instanceof(cls); } }