Changeset 3006 for trunk/sources/HeuristicLab.PluginInfrastructure/Manager
- Timestamp:
- 03/11/10 18:23:52 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/Manager
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginFile.cs
r2790 r3006 47 47 this.type = type; 48 48 } 49 50 public override string ToString() { 51 return name; 52 } 49 53 } 50 54 } -
trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginInfrastructureCancelEventArgs.cs
r2922 r3006 29 29 [Serializable] 30 30 internal sealed class PluginInfrastructureCancelEventArgs : CancelEventArgs { 31 internal IEnumerable< string> Entities { get; private set; }32 internal PluginInfrastructureCancelEventArgs(IEnumerable< string> entities)31 internal IEnumerable<IPluginDescription> Plugins { get; private set; } 32 internal PluginInfrastructureCancelEventArgs(IEnumerable<IPluginDescription> plugins) 33 33 : base() { 34 this. Entities = entities;34 this.Plugins = plugins; 35 35 } 36 36 }
Note: See TracChangeset
for help on using the changeset viewer.