Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8586


Ignore:
Timestamp:
09/06/12 10:22:07 (12 years ago)
Author:
sforsten
Message:

#1867: renamed view DeleteWithThreshold to DeleteWithThresholdView

Location:
branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command
Files:
3 edited
2 moved

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/HeuristicLab.DataImporter.Command.csproj

    r7968 r8586  
    193193      <DependentUpon>BoxCoxTransformationCommandView.cs</DependentUpon>
    194194    </Compile>
    195     <Compile Include="View\DeleteWithThreshold.cs">
    196       <SubType>UserControl</SubType>
    197     </Compile>
    198     <Compile Include="View\DeleteWithThreshold.Designer.cs">
    199       <DependentUpon>DeleteWithThreshold.cs</DependentUpon>
     195    <Compile Include="View\DeleteWithThresholdView.cs">
     196      <SubType>UserControl</SubType>
     197    </Compile>
     198    <Compile Include="View\DeleteWithThresholdView.Designer.cs">
     199      <DependentUpon>DeleteWithThresholdView.cs</DependentUpon>
    200200    </Compile>
    201201    <Compile Include="View\FilterSavitzkyGolayCommandView.cs">
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/DeleteColumnsWithMissingValuesThresholdCommand.cs

    r7994 r8586  
    2929  [StorableClass]
    3030  [ViewableCommandInfoAttribute("Delete Columns beneath Threshold", 1, ColumnGroupState.AnySelectedColumnContainsNull,
    31     "Handle Missing Values", Position = 6, OptionsView = typeof(DeleteWithThreshold))]
     31    "Handle Missing Values", Position = 6, OptionsView = typeof(DeleteWithThresholdView))]
    3232  public class DeleteColumnsWithMissingValuesThresholdCommand : ColumnGroupCommandWithAffectedColumnsBase, IThresholdCommand {
    3333    private ColumnBase oldColumn;
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/MissingValues/DeleteRowsWithMissingValuesThresholdCommand.cs

    r7994 r8586  
    3232  [StorableClass]
    3333  [ViewableCommandInfoAttribute("Delete Rows beneath Threshold", 1, ColumnGroupState.Active,
    34     "Handle Missing Values", Position = 5, OptionsView = typeof(DeleteWithThreshold))]
     34    "Handle Missing Values", Position = 5, OptionsView = typeof(DeleteWithThresholdView))]
    3535  public class DeleteRowsWithMissingValuesThresholdCommand : ColumnGroupCommandBase, IThresholdCommand {
    3636    private Dictionary<int, IComparable[]> deletedRows;
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/View/DeleteWithThresholdView.Designer.cs

    r8584 r8586  
    11namespace HeuristicLab.DataImporter.Command.View {
    2   partial class DeleteWithThreshold {
     2  partial class DeleteWithThresholdView {
    33    /// <summary>
    44    /// Required designer variable.
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.Command/View/DeleteWithThresholdView.cs

    r8584 r8586  
    2323using System.Windows.Forms;
    2424using HeuristicLab.DataImporter.Data.CommandBase;
     25
    2526namespace HeuristicLab.DataImporter.Command.View {
    26   public partial class DeleteWithThreshold : HeuristicLab.DataImporter.Data.CommandBase.CommandViewBase {
    27     public DeleteWithThreshold() {
     27  public partial class DeleteWithThresholdView : CommandViewBase {
     28    public DeleteWithThresholdView() {
    2829      InitializeComponent();
    2930    }
    3031
    31     public DeleteWithThreshold(IThresholdCommand command)
     32    public DeleteWithThresholdView(IThresholdCommand command)
    3233      : this() {
    3334      if (command != null) {
     
    4445
    4546    private double threshold;
    46     public double Threshold { get { return Command.Threshold; } }
    4747
    4848    private void txtThreshold_Validating(object sender, System.ComponentModel.CancelEventArgs e) {
Note: See TracChangeset for help on using the changeset viewer.