protected virtual void OnSelectSourceDocument(FileInfo e)
        {
            SelectDocumentHandler handler = SelectSourceDocument;

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

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

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

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