Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/17/10 19:01:27 (15 years ago)
Author:
gkronber
Message:

Fixed relevant warnings in the plugin infrastructure (didn't fix warnings about XML comments of members that will be removed soon). #915 (Remove warnings from HL 3.3 solution)

Location:
trunk/sources/HeuristicLab.PluginInfrastructure/Interfaces
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Interfaces/IApplication.cs

    r2790 r3092  
    2525
    2626namespace HeuristicLab.PluginInfrastructure {
     27  /// <summary>
     28  /// Interface that must be implemented by HeuristicLab applications.
     29  /// </summary>
    2730  public interface IApplication {
     31    /// <summary>
     32    /// Gets the name of the application.
     33    /// </summary>
    2834    string Name { get; }
     35    /// <summary>
     36    /// Gets the description of the application.
     37    /// </summary>
    2938    string Description { get; }
     39    /// <summary>
     40    /// Main entry point for the application.
     41    /// </summary>
    3042    void Run();
    3143  }
  • trunk/sources/HeuristicLab.PluginInfrastructure/Interfaces/IApplicationManager.cs

    r2790 r3092  
    5151    /// Discovers and creates instances of <paramref name="type"/> and all types implementing or inheriting <paramref name="type"/> (directly and indirectly).
    5252    /// </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>
    5454    /// <returns>An enumerable of instances of the discovered types.</returns>
    5555    IEnumerable<object> GetInstances(Type type);
Note: See TracChangeset for help on using the changeset viewer.