- Timestamp:
- 07/18/16 12:26:03 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/CrossPare/src/de/ugoe/cs/cpdp/versions/SoftwareVersion.java
r132 r135 40 40 */ 41 41 private final Instances instances; 42 42 43 43 /** 44 * Review effort per instance. 44 * Review effort per instance. 45 45 */ 46 46 private final List<Double> efforts; … … 56 56 * data of the version 57 57 */ 58 public SoftwareVersion(String project, String version, Instances instances, List<Double> efforts) { 58 public SoftwareVersion(String project, 59 String version, 60 Instances instances, 61 List<Double> efforts) 62 { 59 63 this.project = project; 60 64 this.version = version; … … 62 66 this.efforts = efforts; 63 67 } 64 68 65 69 /** 66 70 * returns the project name … … 89 93 return new Instances(instances); 90 94 } 91 95 92 96 /** 93 97 * <p>
Note: See TracChangeset
for help on using the changeset viewer.