import { IPSPanelItemSingleLogic } from './ipspanel-item-single-logic'; import { PSModelObjectImpl } from '../../psmodel-object-impl'; export class PSPanelItemSingleLogicImpl extends PSModelObjectImpl implements IPSPanelItemSingleLogic { get codeName(): string { return this.M.codeName; } get condOp(): string { return this.M.condOp; } get dstModelField(): string { return this.M.dstModelField; } get dynaModelFilePath(): string { return this.M.dynaModelFilePath; } get logicCat(): 'PANELVISIBLE' | 'ITEMENABLE' | 'ITEMBLANK' | 'SCRIPTCODE_CHANGE' | 'SCRIPTCODE_CLICK' | 'SCRIPTCODE_FOCUS' | 'SCRIPTCODE_BLUR' { return this.M.logicCat; } get logicType(): string { return this.M.logicType; } get mOSFilePath(): string { return this.M.mOSFilePath; } get memo(): string { return this.M.memo; } get name(): string { return this.M.name; } 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 value(): string { return this.M.value; } get cls(): string { return 'PSPanelItemSingleLogicImpl'; } instanceof(cls: string): boolean { if (cls == 'control.panel.IPSPanelItemSingleLogic') return true; return super.instanceof(cls); } }