public void UpdateTree(Tree aTree) { try { Utils_IOneVisualizer.UpdateTree(this, aTree); } catch (Exception _ex) { GeneralTools.Tools.WriteToLog(_ex); } }
public void Init() { try { Utils_IOneVisualizer.Init(this); } catch (Exception _ex) { GeneralTools.Tools.WriteToLog(_ex); } }
public Grid CreateGrid(string aParameterName, ClusterEnsemble.DataStructures.Property aProperty) { try { return(Utils_IOneVisualizer.CreateGrid(this, aParameterName, aProperty)); } catch (Exception _ex) { GeneralTools.Tools.WriteToLog(_ex); return(null); } }
public string VerifyErrors(out bool aOk) { try { return(Utils_IOneVisualizer.VerifyErrors(this, Tree, out aOk)); } catch (Exception _ex) { aOk = false; GeneralTools.Tools.WriteToLog(_ex); return("Global Error in Application ClusterEnsembleSuite... (control OneEnsembleAlgVisualizer)"); } }