protected virtual void OnSignalAnalysisPerformed(FileInfo fileinfo, byte[] content) { AtmlFileOpenDelegate handler = SignalAnalysisPerformed; if (handler != null) { handler(fileinfo, content); } }
protected virtual void OnAtmlFileOpened(FileInfo fi, byte[] content) { AtmlFileOpenDelegate handler = AtmlFileOpened; if (handler != null) { handler(fi, content); } }
protected virtual void OnTestConfigurationOpened(FileInfo fileinfo, byte[] content) { AtmlFileOpenDelegate handler = TestConfigurationLoaded; if (handler != null) { handler(fileinfo, content); } }