Changeset 3092 for trunk/sources/HeuristicLab.PluginInfrastructure/Manager
- Timestamp:
- 03/17/10 19:01:27 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/Manager/PluginFile.cs
r3006 r3092 27 27 28 28 namespace HeuristicLab.PluginInfrastructure.Manager { 29 /// <summary> 30 /// Plugin files have a name and a type. 31 /// </summary> 29 32 [Serializable] 30 33 public sealed class PluginFile : IPluginFile { … … 32 35 33 36 private string name; 37 /// <summary> 38 /// Gets the name of the file. 39 /// </summary> 34 40 public string Name { 35 41 get { return name; } … … 37 43 38 44 private PluginFileType type; 45 /// <summary> 46 /// Gets the type of the file. 47 /// </summary> 39 48 public PluginFileType Type { 40 49 get { return type; } … … 43 52 #endregion 44 53 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> 45 59 public PluginFile(string name, PluginFileType type) { 46 60 this.name = name; … … 48 62 } 49 63 64 /// <summary> 65 /// ToString override for <see cref="PluginFile" /> 66 /// </summary> 67 /// <returns>Plugin file name</returns> 50 68 public override string ToString() { 51 69 return name;
Note: See TracChangeset
for help on using the changeset viewer.