import { PSEditorImpl } from '../pseditor-impl'; import { IPSValueItemEditor } from './ipsvalue-item-editor'; export class PSValueItemEditorImpl extends PSEditorImpl implements IPSValueItemEditor { get valueItemName(): string { return this.M.valueItemName; } get cls(): string { return 'PSValueItemEditorImpl'; } instanceof(cls: string): boolean { if (cls == 'control.editor.IPSValueItemEditor') return true; return super.instanceof(cls); } }