import { IPSDELogic } from './ipsdelogic'; import { IPSDELogicParam } from './ipsdelogic-param'; import { IPSDERenewParamLogic } from './ipsderenew-param-logic'; import { PSDELogicNodeImpl } from './psdelogic-node-impl'; export class PSDERenewParamLogicImpl extends PSDELogicNodeImpl implements IPSDERenewParamLogic { 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; } get cls(): string { return 'PSDERenewParamLogicImpl'; } instanceof(cls: string): boolean { if (cls == 'dataentity.logic.IPSDERenewParamLogic') return true; return super.instanceof(cls); } }