Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/03/18 11:12:31 (6 years ago)
Author:
fholzing
Message:

#2904: Renamed variableImactsArrayView to variableImpactsArrayView

Location:
branches/2904_CalculateImpacts/HeuristicLab.Problems.DataAnalysis.Views/3.4
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/2904_CalculateImpacts/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationSolutionVariableImpactsView.Designer.cs

    r16036 r16042  
    5555      this.dataPartitionLabel = new System.Windows.Forms.Label();
    5656      this.dataPartitionComboBox = new System.Windows.Forms.ComboBox();
    57       this.variableImactsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();
     57      this.variableImpactsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();
    5858      this.SuspendLayout();
    5959      //
     
    164164      // variableImactsArrayView
    165165      //
    166       this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     166      this.variableImpactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    167167            | System.Windows.Forms.AnchorStyles.Left)
    168168            | System.Windows.Forms.AnchorStyles.Right)));
    169       this.variableImactsArrayView.Caption = "StringConvertibleArray View";
    170       this.variableImactsArrayView.Content = null;
    171       this.variableImactsArrayView.Location = new System.Drawing.Point(3, 84);
    172       this.variableImactsArrayView.Name = "variableImactsArrayView";
    173       this.variableImactsArrayView.ReadOnly = true;
    174       this.variableImactsArrayView.Size = new System.Drawing.Size(706, 278);
    175       this.variableImactsArrayView.TabIndex = 2;
     169      this.variableImpactsArrayView.Caption = "StringConvertibleArray View";
     170      this.variableImpactsArrayView.Content = null;
     171      this.variableImpactsArrayView.Location = new System.Drawing.Point(3, 84);
     172      this.variableImpactsArrayView.Name = "variableImactsArrayView";
     173      this.variableImpactsArrayView.ReadOnly = true;
     174      this.variableImpactsArrayView.Size = new System.Drawing.Size(706, 278);
     175      this.variableImpactsArrayView.TabIndex = 2;
    176176      //
    177177      // ClassificationSolutionVariableImpactsView
     
    188188      this.Controls.Add(this.dataPartitionLabel);
    189189      this.Controls.Add(this.dataPartitionComboBox);
    190       this.Controls.Add(this.variableImactsArrayView);
     190      this.Controls.Add(this.variableImpactsArrayView);
    191191      this.Name = "ClassificationSolutionVariableImpactsView";
    192192      this.Size = new System.Drawing.Size(712, 365);
     
    199199    #endregion
    200200
    201     private Data.Views.StringConvertibleArrayView variableImactsArrayView;
     201    private Data.Views.StringConvertibleArrayView variableImpactsArrayView;
    202202    private System.Windows.Forms.ComboBox dataPartitionComboBox;
    203203    private System.Windows.Forms.Label dataPartitionLabel;
  • branches/2904_CalculateImpacts/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationSolutionVariableImpactsView.cs

    r16041 r16042  
    7979      base.OnContentChanged();
    8080      if (Content == null) {
    81         variableImactsArrayView.Content = null;
     81        variableImpactsArrayView.Content = null;
    8282      } else {
    8383        UpdateVariableImpact();
     
    121121      var dataPartition = (ClassificationSolutionVariableImpactsCalculator.DataPartitionEnum)dataPartitionComboBox.SelectedItem;
    122122
    123       variableImactsArrayView.Caption = Content.Name + " Variable Impacts";
     123      variableImpactsArrayView.Caption = Content.Name + " Variable Impacts";
    124124      progress = mainForm.AddOperationProgressToView(this, "Calculating variable impacts for " + Content.Name);
    125125      progress.ProgressValue = 0;
     
    189189
    190190    /// <summary>
    191     /// Updates the <see cref="variableImactsArrayView"/> according to the selected ordering <see cref="ascendingCheckBox"/> of the selected Column <see cref="sortByComboBox"/>
     191    /// Updates the <see cref="variableImpactsArrayView"/> according to the selected ordering <see cref="ascendingCheckBox"/> of the selected Column <see cref="sortByComboBox"/>
    192192    /// The default is "Descending" by "VariableImpact" (as in previous versions)
    193193    /// </summary>
     
    226226
    227227      //Could be, if the View was closed
    228       if (!variableImactsArrayView.IsDisposed) {
    229         variableImactsArrayView.Content = (DoubleArray)impactArray.AsReadOnly();
     228      if (!variableImpactsArrayView.IsDisposed) {
     229        variableImpactsArrayView.Content = (DoubleArray)impactArray.AsReadOnly();
    230230      }
    231231    }
  • branches/2904_CalculateImpacts/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.Designer.cs

    r15999 r16042  
    5555      this.dataPartitionLabel = new System.Windows.Forms.Label();
    5656      this.dataPartitionComboBox = new System.Windows.Forms.ComboBox();
    57       this.variableImactsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();
     57      this.variableImpactsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();
    5858      this.SuspendLayout();
    5959      //
     
    164164      // variableImactsArrayView
    165165      //
    166       this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     166      this.variableImpactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    167167            | System.Windows.Forms.AnchorStyles.Left)
    168168            | System.Windows.Forms.AnchorStyles.Right)));
    169       this.variableImactsArrayView.Caption = "StringConvertibleArray View";
    170       this.variableImactsArrayView.Content = null;
    171       this.variableImactsArrayView.Location = new System.Drawing.Point(3, 84);
    172       this.variableImactsArrayView.Name = "variableImactsArrayView";
    173       this.variableImactsArrayView.ReadOnly = true;
    174       this.variableImactsArrayView.Size = new System.Drawing.Size(706, 278);
    175       this.variableImactsArrayView.TabIndex = 2;
     169      this.variableImpactsArrayView.Caption = "StringConvertibleArray View";
     170      this.variableImpactsArrayView.Content = null;
     171      this.variableImpactsArrayView.Location = new System.Drawing.Point(3, 84);
     172      this.variableImpactsArrayView.Name = "variableImactsArrayView";
     173      this.variableImpactsArrayView.ReadOnly = true;
     174      this.variableImpactsArrayView.Size = new System.Drawing.Size(706, 278);
     175      this.variableImpactsArrayView.TabIndex = 2;
    176176      //
    177177      // RegressionSolutionVariableImpactsView
     
    188188      this.Controls.Add(this.dataPartitionLabel);
    189189      this.Controls.Add(this.dataPartitionComboBox);
    190       this.Controls.Add(this.variableImactsArrayView);
     190      this.Controls.Add(this.variableImpactsArrayView);
    191191      this.Name = "RegressionSolutionVariableImpactsView";
    192192      this.Size = new System.Drawing.Size(712, 365);
     
    199199    #endregion
    200200
    201     private Data.Views.StringConvertibleArrayView variableImactsArrayView;
     201    private Data.Views.StringConvertibleArrayView variableImpactsArrayView;
    202202    private System.Windows.Forms.ComboBox dataPartitionComboBox;
    203203    private System.Windows.Forms.Label dataPartitionLabel;
  • branches/2904_CalculateImpacts/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.cs

    r16041 r16042  
    7979      base.OnContentChanged();
    8080      if (Content == null) {
    81         variableImactsArrayView.Content = null;
     81        variableImpactsArrayView.Content = null;
    8282      } else {
    8383        UpdateVariableImpact();
     
    121121      var dataPartition = (RegressionSolutionVariableImpactsCalculator.DataPartitionEnum)dataPartitionComboBox.SelectedItem;
    122122
    123       variableImactsArrayView.Caption = Content.Name + " Variable Impacts";
     123      variableImpactsArrayView.Caption = Content.Name + " Variable Impacts";
    124124      progress = mainForm.AddOperationProgressToView(this, "Calculating variable impacts for " + Content.Name);
    125125      progress.ProgressValue = 0;
     
    188188
    189189    /// <summary>
    190     /// Updates the <see cref="variableImactsArrayView"/> according to the selected ordering <see cref="ascendingCheckBox"/> of the selected Column <see cref="sortByComboBox"/>
     190    /// Updates the <see cref="variableImpactsArrayView"/> according to the selected ordering <see cref="ascendingCheckBox"/> of the selected Column <see cref="sortByComboBox"/>
    191191    /// The default is "Descending" by "VariableImpact" (as in previous versions)
    192192    /// </summary>
     
    225225
    226226      //Could be, if the View was closed
    227       if (!variableImactsArrayView.IsDisposed) {
    228         variableImactsArrayView.Content = (DoubleArray)impactArray.AsReadOnly();
     227      if (!variableImpactsArrayView.IsDisposed) {
     228        variableImpactsArrayView.Content = (DoubleArray)impactArray.AsReadOnly();
    229229      }
    230230    }
Note: See TracChangeset for help on using the changeset viewer.