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)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginFile.cs

    r3006 r3092  
    2727
    2828namespace HeuristicLab.PluginInfrastructure.Manager {
     29  /// <summary>
     30  /// Plugin files have a name and a type.
     31  /// </summary>
    2932  [Serializable]
    3033  public sealed class PluginFile : IPluginFile {
     
    3235
    3336    private string name;
     37    /// <summary>
     38    /// Gets the name of the file.
     39    /// </summary>
    3440    public string Name {
    3541      get { return name; }
     
    3743
    3844    private PluginFileType type;
     45    /// <summary>
     46    /// Gets the type of the file.
     47    /// </summary>
    3948    public PluginFileType Type {
    4049      get { return type; }
     
    4352    #endregion
    4453
     54    /// <summary>
     55    /// Inizialize a new instance of <see cref="PluginFile" />
     56    /// </summary>
     57    /// <param name="name">File name</param>
     58    /// <param name="type">File type</param>
    4559    public PluginFile(string name, PluginFileType type) {
    4660      this.name = name;
     
    4862    }
    4963
     64    /// <summary>
     65    /// ToString override for <see cref="PluginFile" />
     66    /// </summary>
     67    /// <returns>Plugin file name</returns>
    5068    public override string ToString() {
    5169      return name;
Note: See TracChangeset for help on using the changeset viewer.