import { IPSFIDEFValueRule } from './ipsfidefvalue-rule'; import { PSModelObjectImpl } from '../../psmodel-object-impl'; export class PSFIDEFValueRuleImpl extends PSModelObjectImpl implements IPSFIDEFValueRule { get memo(): string { return this.M.memo; } get name(): string { return this.M.name; } get cls(): string { return 'PSFIDEFValueRuleImpl'; } instanceof(cls: string): boolean { if (cls == 'control.form.IPSFIDEFValueRule') return true; return super.instanceof(cls); } }