Changeset 16993 for branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/Interfaces
- Timestamp:
- 05/29/19 12:16:15 (6 years ago)
- Location:
- branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/Interfaces
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/Interfaces/IApplicationManager.cs
r16984 r16993 47 47 48 48 /// <summary> 49 /// Discovers and creates instances of <typeparamref name="T"/> and all types implementing or inheriting <typeparamref name="T"/> (directly and indirectly). 50 /// </summary> 51 /// <typeparam name="T">The type or super-type to discover.</typeparam> 52 /// <param name="args">Constructor arguments.</param> 53 /// <returns>An enumerable of instances of the discovered types.</returns> 54 IEnumerable<T> GetInstances<T>(params object[] args) where T : class; 55 56 /// <summary> 49 57 /// Discovers and creates instances of <paramref name="type"/> and all types implementing or inheriting <paramref name="type"/> (directly and indirectly). 50 58 /// </summary> … … 52 60 /// <returns>An enumerable of instances of the discovered types.</returns> 53 61 IEnumerable<object> GetInstances(Type type); 62 63 /// <summary> 64 /// Discovers and creates instances of <paramref name="type"/> and all types implementing or inheriting <paramref name="type"/> (directly and indirectly). 65 /// </summary> 66 /// <param name="type">The type or super-type to discover.</param> 67 /// <param name="args">Constructor arguments.</param> 68 /// <returns>An enumerable of instances of the discovered types.</returns> 69 IEnumerable<object> GetInstances(Type type, params object[] args); 54 70 55 71 /// <summary> -
branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/Interfaces/IRunner.cs
r16984 r16993 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Text; 1 using System.Collections.Generic; 5 2 6 3 namespace HeuristicLab.PluginInfrastructure { -
branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure/3.3/Interfaces/IRunnerHost.cs
r16985 r16993 8 8 /// </summary> 9 9 public interface IRunnerHost { 10 /// <summary> 11 /// The runner state. 12 /// </summary> 13 RunnerState State { get; } 10 14 11 15 /// <summary> … … 32 36 /// </summary> 33 37 void Resume(); 34 35 38 } 36 39 }
Note: See TracChangeset
for help on using the changeset viewer.