- Timestamp:
- 08/31/16 15:35:42 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/versions/SoftwareVersion.java
r136 r142 26 26 public class SoftwareVersion implements Comparable<SoftwareVersion> { 27 27 28 private final String dataset; 29 28 30 /** 29 31 * name of the project … … 58 60 * review efforts for the version 59 61 */ 60 public SoftwareVersion(String project, 62 public SoftwareVersion(String dataset, 63 String project, 61 64 String version, 62 65 Instances instances, 63 66 List<Double> efforts) 64 67 { 68 this.dataset = dataset; 65 69 this.project = project; 66 70 this.version = version; … … 69 73 } 70 74 75 public String getDataset() { 76 return dataset; 77 } 78 71 79 /** 72 80 * returns the project name
Note: See TracChangeset
for help on using the changeset viewer.