Esempio n. 1
0
        protected virtual void OnSelectSourceDocument(FileInfo e)
        {
            SelectDocumentHandler handler = SelectSourceDocument;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Esempio n. 2
0
        protected virtual void OnSelectAtmlTestConfiguration(FileInfo e)
        {
            SelectDocumentHandler handler = SelectATMLTestConfiguration;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Esempio n. 3
0
        protected virtual void OnSelectATMLTestDescriptionDocument(FileInfo e)
        {
            SelectDocumentHandler handler = SelectATMLTestDescriptionDocument;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Esempio n. 4
0
        protected virtual void OnSelectAtmlTestAdapterDocument(FileInfo e)
        {
            SelectDocumentHandler handler = SelectATMLTestAdapterDocument;

            if (handler != null)
            {
                handler(this, e);
            }
        }