Ignore:
Timestamp:
07/18/16 12:26:03 (8 years ago)
Author:
sherbold
Message:
  • code documentation and formatting
File:
1 edited

Legend:

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

    r132 r135  
    4040     */ 
    4141    private final Instances instances; 
    42      
     42 
    4343    /** 
    44      * Review effort per instance.  
     44     * Review effort per instance. 
    4545     */ 
    4646    private final List<Double> efforts; 
     
    5656     *            data of the version 
    5757     */ 
    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    { 
    5963        this.project = project; 
    6064        this.version = version; 
     
    6266        this.efforts = efforts; 
    6367    } 
    64      
     68 
    6569    /** 
    6670     * returns the project name 
     
    8993        return new Instances(instances); 
    9094    } 
    91      
     95 
    9296    /** 
    9397     * <p> 
Note: See TracChangeset for help on using the changeset viewer.