Changeset 3046
- Timestamp:
- 03/15/10 19:35:14 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/ApplicationManager.cs
r2922 r3046 225 225 /// <summary> 226 226 /// Finds all types that are subtypes or equal to the specified type if they are part of the given 227 /// <paramref name="plugin "/>.227 /// <paramref name="pluginDescription"/>. 228 228 /// </summary> 229 229 /// <param name="type">Most general type for which to find matching types.</param> 230 /// <param name="plugin ">The plugin the subtypes must be part of.</param>230 /// <param name="pluginDescription">The plugin the subtypes must be part of.</param> 231 231 /// <param name="onlyInstantiable">Return only types that are instantiable 232 232 /// (interfaces, abstract classes... are not returned)</param> -
trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginInfrastructureEventArgs.cs
r2922 r3046 34 34 35 35 private static PluginInfrastructureEventArgs emptyArgs = new PluginInfrastructureEventArgs(string.Empty); 36 internal static PluginInfrastructureEventArgs Empty {36 internal new static PluginInfrastructureEventArgs Empty { 37 37 get { return emptyArgs; } 38 38 } -
trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginValidator.cs
r2922 r3046 265 265 /// plugin dependency checking before plugin activation. 266 266 /// </summary> 267 /// <param name=" t"></param>267 /// <param name="pluginType"></param> 268 268 private PluginDescription GetPluginDescription(Type pluginType) { 269 269
Note: See TracChangeset
for help on using the changeset viewer.