Esempio n. 1
0
 /// <summary>
 /// Creates and returns the post-processing object represented
 /// by the current view-model.
 /// </summary>
 /// <returns>The <see cref="IJobResultsHandler"/> designed by the
 /// user to use in post-processing.</returns>
 public IJobResultsHandler CreatePostProcessor()
 {
     if (CurrentOptions == null)
     {
         return(null);
     }
     else
     {
         return(CurrentOptions.CreateHandler());
     }
 }