import { IPSDERollbackLogic } from './ipsderollback-logic'; import { PSDELogicNodeImpl } from './psdelogic-node-impl'; export class PSDERollbackLogicImpl extends PSDELogicNodeImpl implements IPSDERollbackLogic { get cls(): string { return 'PSDERollbackLogicImpl'; } instanceof(cls: string): boolean { if (cls == 'dataentity.logic.IPSDERollbackLogic') return true; return super.instanceof(cls); } }