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