Changeset 615
- Timestamp:
- 03/28/11 22:21:10 (2 years ago)
- Location:
- raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model
- Files:
-
- 2 edited
- 2 moved
-
report/AggregatorGraphModel.java (modified) (1 diff)
-
report/Presentation.java (moved) (moved from raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/Presentation.java) (1 diff)
-
report/Series.java (moved) (moved from raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/Series.java) (1 diff)
-
wsmodel/StatisticParameters.java (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/report/AggregatorGraphModel.java
r614 r615 5 5 import java.util.List; 6 6 7 import uk.ac.cardiff.model.Presentation;8 7 9 8 -
raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/report/Presentation.java
r613 r615 2 2 * 3 3 */ 4 package uk.ac.cardiff.model ;4 package uk.ac.cardiff.model.report; 5 5 6 6 import java.io.Serializable; -
raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/report/Series.java
r614 r615 2 2 * 3 3 */ 4 package uk.ac.cardiff.model ;4 package uk.ac.cardiff.model.report; 5 5 6 6 import java.io.Serializable; -
raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/wsmodel/StatisticParameters.java
r614 r615 18 18 import org.joda.time.format.DateTimeFormatter; 19 19 20 import uk.ac.cardiff.model.Presentation;21 import uk.ac.cardiff.model.Series;22 20 import uk.ac.cardiff.model.event.Event; 21 import uk.ac.cardiff.model.report.Presentation; 22 import uk.ac.cardiff.model.report.Series; 23 23 import uk.ac.cardiff.model.sql.SQLFilter; 24 24 … … 39 39 private String unitName; 40 40 41 /* List of parameters passed into the <code>performStatistic</code> method*/42 private List<MethodParameter> methodParam s;43 44 /* 41 /** List of parameters passed into the <code>performStatistic</code> method*/ 42 private List<MethodParameter> methodParameters; 43 44 /** 45 45 * 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 46 46 * data series will be used … … 48 48 private DateTime startTime; 49 49 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 */ 51 51 private DateTime endTime; 52 52 53 /* Its important that these dates (used for display in trinidad) are kept in sync with the53 /** Its important that these dates (used for display in trinidad) are kept in sync with the 54 54 * Joda DateTime classes above*/ 55 55 private Date startTimeJava; 56 56 private Date endTimeJava; 57 57 58 /* either system or user types */58 /** either system or user types */ 59 59 public enum StatisticType { 60 60 /* … … 96 96 97 97 public void setMethodParams(List<MethodParameter> methodParams) { 98 this.methodParam s = methodParams;98 this.methodParameters = methodParams; 99 99 } 100 100 101 101 public List<MethodParameter> getMethodParams() { 102 return methodParam s;102 return methodParameters; 103 103 } 104 104
Note: See TracChangeset
for help on using the changeset viewer.
