Ignore:
Timestamp:
08/31/16 15:35:42 (8 years ago)
Author:
atrautsch
Message:

heterogenous experiments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/CrossPare/src/de/ugoe/cs/cpdp/versions/SoftwareVersion.java

    r136 r142  
    2626public class SoftwareVersion implements Comparable<SoftwareVersion> { 
    2727 
     28    private final String dataset; 
     29     
    2830    /** 
    2931     * name of the project 
     
    5860     *            review efforts for the version 
    5961     */ 
    60     public SoftwareVersion(String project, 
     62    public SoftwareVersion(String dataset, 
     63                           String project, 
    6164                           String version, 
    6265                           Instances instances, 
    6366                           List<Double> efforts) 
    6467    { 
     68        this.dataset = dataset; 
    6569        this.project = project; 
    6670        this.version = version; 
     
    6973    } 
    7074 
     75    public String getDataset() { 
     76        return dataset; 
     77    } 
     78     
    7179    /** 
    7280     * returns the project name 
Note: See TracChangeset for help on using the changeset viewer.