Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/09 12:46:32 (16 years ago)
Author:
vdorfer
Message:

Created parts of the API documentation for HeuristicLab.PluginInfrastructure namespace (#331)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/ClassInfoAttribute.cs

    r242 r1189  
    3333    private string name;
    3434    /// <summary>
    35     /// Name of the plugin to which the assembly belongs to.
     35    /// Gets or sets the name of the plugin to which the assembly belongs to.
    3636    /// </summary>
    3737    public string Name {
     
    4141
    4242    private string version;
     43    /// <summary>
     44    /// Gets or sets the version of the plugin.
     45    /// </summary>
    4346    public string Version {
    4447      get { return version; }
     
    4750
    4851    private string description;
     52    /// <summary>
     53    /// Gets or sets the description of the plugin.
     54    /// </summary>
    4955    public string Description {
    5056      get { return description; }
     
    5359
    5460    private bool autoRestart;
     61    /// <summary>
     62    /// Gets or sets the boolean flag whether the plugin should be automatically restarted.
     63    /// </summary>
    5564    public bool AutoRestart {
    5665      get { return autoRestart; }
     
    5867    }
    5968
     69    /// <summary>
     70    /// Initializes a new instance of <see cref="ClassInfoAttribute"/>.
     71    /// </summary>
    6072    public ClassInfoAttribute() {}
    6173  }
Note: See TracChangeset for help on using the changeset viewer.