Changeset 615


Ignore:
Timestamp:
03/28/11 22:21:10 (2 years ago)
Author:
philsmart
Message:
 
Location:
raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model
Files:
2 edited
2 moved

Legend:

Unmodified
Added
Removed
  • raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/report/AggregatorGraphModel.java

    r614 r615  
    55import java.util.List; 
    66 
    7 import uk.ac.cardiff.model.Presentation; 
    87 
    98 
  • raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/report/Presentation.java

    r613 r615  
    22 * 
    33 */ 
    4 package uk.ac.cardiff.model; 
     4package uk.ac.cardiff.model.report; 
    55 
    66import java.io.Serializable; 
  • raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/report/Series.java

    r614 r615  
    22 * 
    33 */ 
    4 package uk.ac.cardiff.model; 
     4package uk.ac.cardiff.model.report; 
    55 
    66import java.io.Serializable; 
  • raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/wsmodel/StatisticParameters.java

    r614 r615  
    1818import org.joda.time.format.DateTimeFormatter; 
    1919 
    20 import uk.ac.cardiff.model.Presentation; 
    21 import uk.ac.cardiff.model.Series; 
    2220import uk.ac.cardiff.model.event.Event; 
     21import uk.ac.cardiff.model.report.Presentation; 
     22import uk.ac.cardiff.model.report.Series; 
    2323import uk.ac.cardiff.model.sql.SQLFilter; 
    2424 
     
    3939    private String unitName; 
    4040 
    41     /* List of parameters passed into the <code>performStatistic</code> method*/ 
    42     private List<MethodParameter> methodParams; 
    43  
    44     /* 
     41    /** List of parameters passed into the <code>performStatistic</code> method*/ 
     42    private List<MethodParameter> methodParameters; 
     43 
     44    /** 
    4545     * the start time from which to produce the starts, defining the temporal extent If a starttime and endtime is not given, the entire temporal extent of the 
    4646     * data series will be used 
     
    4848    private DateTime startTime; 
    4949 
    50     /* the end time from which to produce the starts, defining the temporal extent */ 
     50    /** the end time from which to produce the starts, defining the temporal extent */ 
    5151    private DateTime endTime; 
    5252 
    53     /*Its important that these dates (used for display in trinidad) are kept in sync with the 
     53    /** Its important that these dates (used for display in trinidad) are kept in sync with the 
    5454     * Joda DateTime classes above*/ 
    5555    private Date startTimeJava; 
    5656    private Date endTimeJava; 
    5757 
    58     /* either system or user types */ 
     58    /** either system or user types */ 
    5959    public enum StatisticType { 
    6060        /* 
     
    9696 
    9797    public void setMethodParams(List<MethodParameter> methodParams) { 
    98         this.methodParams = methodParams; 
     98        this.methodParameters = methodParams; 
    9999    } 
    100100 
    101101    public List<MethodParameter> getMethodParams() { 
    102         return methodParams; 
     102        return methodParameters; 
    103103    } 
    104104 
Note: See TracChangeset for help on using the changeset viewer.