- Timestamp:
- 03/17/10 19:01:27 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.PluginInfrastructure/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Interfaces/IApplication.cs
r2790 r3092 25 25 26 26 namespace HeuristicLab.PluginInfrastructure { 27 /// <summary> 28 /// Interface that must be implemented by HeuristicLab applications. 29 /// </summary> 27 30 public interface IApplication { 31 /// <summary> 32 /// Gets the name of the application. 33 /// </summary> 28 34 string Name { get; } 35 /// <summary> 36 /// Gets the description of the application. 37 /// </summary> 29 38 string Description { get; } 39 /// <summary> 40 /// Main entry point for the application. 41 /// </summary> 30 42 void Run(); 31 43 } -
trunk/sources/HeuristicLab.PluginInfrastructure/Interfaces/IApplicationManager.cs
r2790 r3092 51 51 /// Discovers and creates instances of <paramref name="type"/> and all types implementing or inheriting <paramref name="type"/> (directly and indirectly). 52 52 /// </summary> 53 /// <param name="type">The type or super-type to discover.</ typeparam>53 /// <param name="type">The type or super-type to discover.</param> 54 54 /// <returns>An enumerable of instances of the discovered types.</returns> 55 55 IEnumerable<object> GetInstances(Type type);
Note: See TracChangeset
for help on using the changeset viewer.