Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/12/09 17:45:45 (14 years ago)
Author:
gkronber
Message:

Worked on plugin infrastructure refactoring. (Fully functional revision). #799

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure.Manager/ApplicationDescription.cs

    r2481 r2488  
    2929  /// </summary>
    3030  [Serializable]
    31   public class ApplicationDescription {
     31  public class ApplicationDescription : IApplicationDescription {
    3232    private string name;
    3333
     
    6767    }
    6868
    69     private string pluginAssembly;
     69    private string declaringAssemblyName;
    7070    /// <summary>
    7171    /// Gets or sets the name of the assembly that contains the IApplication type.
    7272    /// </summary>
    73     public string PluginAssembly {
    74       get { return pluginAssembly; }
    75       set { pluginAssembly = value; }
     73    public string DeclaringAssemblyName {
     74      get { return declaringAssemblyName; }
     75      set { declaringAssemblyName = value; }
    7676    }
    7777
    78     private string pluginType;
     78    private string declaringTypeName;
    7979    /// <summary>
    8080    /// Gets or sets the name of the type that implements the interface IApplication.
    8181    /// </summary>
    82     public string PluginType {
    83       get { return pluginType; }
    84       set { pluginType = value; }
     82    public string DeclaringTypeName {
     83      get { return declaringTypeName; }
     84      set { declaringTypeName = value; }
    8585    }
    8686  }
Note: See TracChangeset for help on using the changeset viewer.