Пример #1
0
 public void OnGraphDecomposed(GraphBuilderBase graph)
 {
     foreach (IPlugin plugin in this.plugins)
     {
         try
         {
             plugin.OnGraphDecomposed(graph);
         }
         catch (Exception ex)
         {
             MessageBox.Show(string.Format(Properties.Resources.PluginException, plugin.Name, ex.ToString()));
         }
     }
 }
 public GraphCreator(GraphBuilderBase graphBuilder)
 {
     _graphBuilder = graphBuilder;
 }