import { IPSDEUIRawCodeLogic } from './ipsdeuiraw-code-logic'; import { PSDEUILogicNodeImpl } from './psdeuilogic-node-impl'; export class PSDEUIRawCodeLogicImpl extends PSDEUILogicNodeImpl implements IPSDEUIRawCodeLogic { get code(): string { return this.M.code; } get cls(): string { return 'PSDEUIRawCodeLogicImpl'; } instanceof(cls: string): boolean { if (cls == 'dataentity.logic.IPSDEUIRawCodeLogic') return true; return super.instanceof(cls); } }