- Timestamp:
- 06/28/16 12:01:39 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/versions/SoftwareVersion.java
r86 r132 14 14 15 15 package de.ugoe.cs.cpdp.versions; 16 17 import java.util.List; 16 18 17 19 import weka.core.Instances; … … 38 40 */ 39 41 private final Instances instances; 42 43 /** 44 * Review effort per instance. 45 */ 46 private final List<Double> efforts; 40 47 41 48 /** … … 49 56 * data of the version 50 57 */ 51 public SoftwareVersion(String project, String version, Instances instances ) {58 public SoftwareVersion(String project, String version, Instances instances, List<Double> efforts) { 52 59 this.project = project; 53 60 this.version = version; 54 61 this.instances = instances; 62 this.efforts = efforts; 55 63 } 56 64 57 65 /** 58 66 * returns the project name … … 81 89 return new Instances(instances); 82 90 } 91 92 /** 93 * <p> 94 * returns the review effort of the version 95 * </p> 96 * 97 * @return 98 */ 99 public List<Double> getEfforts() { 100 return efforts; 101 } 83 102 84 103 /**
Note: See TracChangeset
for help on using the changeset viewer.