Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/02/12 16:07:35 (12 years ago)
Author:
sforsten
Message:

#1782:

  • added CanSave property to IProblemInstanceProvider to know if it can save its data
  • ProblemInstanceConsumerViewGeneric only shows the export button if an IProblemInstanceExporter is available and the selected SelectedProvider has the CanSave property set to true
  • added a default implementation for CanSave and SaveData to ProblemInstanceProvider, so classes which inherit from it, don't have to implement it.
  • Classes in Problems.Instances.DataAnalysis which implemented the IProblemInstanceProvider now inherit from the class ProblemInstanceProvider, so some code is obsolete now and had been deleted
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis/3.3/Classification/CSV/ClassifiactionCSVInstanceProvider.cs

    r7860 r8180  
    2323using System;
    2424using System.Collections.Generic;
     25using System.IO;
     26using System.Text;
    2527using HeuristicLab.Problems.DataAnalysis;
    2628namespace HeuristicLab.Problems.Instances.DataAnalysis {
     
    4143    }
    4244
     45    public override bool CanSaveData {
     46      get { return true; }
     47    }
     48
    4349    public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
    4450      return new List<IDataDescriptor>();
     51    }
     52
     53    public override void SaveData(IClassificationProblemData instance, string path) {
     54      StringBuilder strBuilder = new StringBuilder();
     55
     56      foreach (var variable in instance.InputVariables) {
     57        strBuilder.Append(variable + ";");
     58      }
     59      strBuilder.Remove(strBuilder.Length - 1, 1);
     60      strBuilder.AppendLine();
     61
     62      Dataset dataset = instance.Dataset;
     63
     64      for (int i = 0; i < dataset.Rows; i++) {
     65        for (int j = 0; j < dataset.Columns; j++) {
     66          strBuilder.Append(dataset.GetValue(i, j) + ";");
     67        }
     68        strBuilder.Remove(strBuilder.Length - 1, 1);
     69        strBuilder.AppendLine();
     70      }
     71
     72      using (StreamWriter writer = new StreamWriter(path)) {
     73        writer.Write(strBuilder);
     74      }
    4575    }
    4676
Note: See TracChangeset for help on using the changeset viewer.