BlueSky.CommandExecutionHelper.ExecuteAnalysisCommands C# (CSharp) Method

ExecuteAnalysisCommands() private method

private ExecuteAnalysisCommands ( ) : void
return void
        private void ExecuteAnalysisCommands()
        {
            //UAReturn retval = new UAReturn();
            retval.Success = true;
            AnalyticsData data = new AnalyticsData();
            data.SelectedForDump = selectedForDump;//10Jan2013
            data.PreparedCommand = cmd.CommandSyntax;//storing command
            data.Result = retval;
            //18Nov2013 replared by following data.AnalysisType = cmd.CommandSyntax;
            data.AnalysisType = cmd.CommandSyntax.Equals("bskyfrmtobj") ? ((UAMenuCommand)parameter).commandtype : cmd.CommandSyntax; //"T-Test"; For Parent Node name 02Aug2012
            data.InputElement = element;
            data.DataSource = ds;
            data.OutputTemplate = ((UAMenuCommand)parameter).commandoutputformat;
            UIController.AnalysisComplete(data);
        }