Exemple #1
0
        public bool ProcessRepository(EA.Repository repository, Types.PluginType.Enum type)
        {
            bool result = false;

            if (m_PluginCollection.ContainsKey(type))
            {
                m_PluginCollection[type].ProcessRepository(repository);
            }

            return(result);
        }
Exemple #2
0
 public void RegisterPlugin(IPlugin plugin, Types.PluginType.Enum type)
 {
     Log.Info("type=" + type.ToString());
     m_PluginCollection.Add(type, plugin);
 }