Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/23/15 16:14:30 (8 years ago)
Author:
gkronber
Message:

#2522:

  • moved UI components out of HeuristicLab.PluginInfrastructure -> HeuristicLab.PluginInfrastructure.UI
  • moved ErrorDialog to HeuristicLab.MainForm.WindowsForms
  • moved ErrorHandling (for building an error message string) to HeuristicLab.Common
  • Changed exception handlers in Views to use MainForm.ShowError()
  • Changed usages for ErrorDialog in non-UI components to throw exceptions instead.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/RefactorPluginInfrastructure-2522/HeuristicLab.PluginInfrastructure/3.3/Manager/ApplicationDescription.cs

    r12012 r13338  
    4242    /// Gets or sets the version of the application.
    4343    /// </summary>
    44     internal Version Version {
     44    public Version Version {
    4545      get { return version; }
    46       set { version = value; }
     46      internal set { version = value; }
    4747    }
    4848    private string description;
     
    6060    /// Gets or sets the boolean flag if the application should be automatically restarted.
    6161    /// </summary>
    62     internal bool AutoRestart {
     62    public bool AutoRestart {
    6363      get { return autoRestart; }
    64       set { autoRestart = value; }
     64      internal set { autoRestart = value; }
    6565    }
    6666
     
    6969    /// Gets or sets the name of the assembly that contains the IApplication type.
    7070    /// </summary>
    71     internal string DeclaringAssemblyName {
     71    public string DeclaringAssemblyName {
    7272      get { return declaringAssemblyName; }
    73       set { declaringAssemblyName = value; }
     73      internal set { declaringAssemblyName = value; }
    7474    }
    7575
     
    7878    /// Gets or sets the name of the type that implements the interface IApplication.
    7979    /// </summary>
    80     internal string DeclaringTypeName {
     80    public string DeclaringTypeName {
    8181      get { return declaringTypeName; }
    82       set { declaringTypeName = value; }
     82      internal set { declaringTypeName = value; }
    8383    }
    8484
Note: See TracChangeset for help on using the changeset viewer.