public static Dictionary <IMethod, string> showMethodStreams(this O2MappedAstData astData, List <IMethod> iMethods, TreeView treeView)
 {
     return(astData.showMethodStreams(iMethods, treeView, null));
 }
        public static Dictionary <IMethod, string> showMethodStreams(this O2MappedAstData astData, Control control, ProgressBar progressBar)
        {
            var iMethods = astData.iMethods();

            return(astData.showMethodStreams(iMethods, control, progressBar));
        }
        public static Dictionary <IMethod, string> showMethodStreams(this O2MappedAstData astData, List <IMethod> iMethods, Control control, ProgressBar progressBar)
        {
            var treeView = control.add_MethodStreamViewer();

            return(astData.showMethodStreams(iMethods, treeView, progressBar));
        }
 public static Dictionary <IMethod, string> showMethodStreams(this O2MappedAstData astData, Control control)
 {
     return(astData.showMethodStreams(control, null));
 }