Changeset 431
- Timestamp:
- 01/12/11 19:53:49 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
raptor-information-model/trunk/src/main/java/uk/ac/cardiff/model/StatisticParameters.java
r424 r431 42 42 /* The textual description of the series, as attached to the x-axis */ 43 43 private String seriesLabel; 44 /* A formatted textual description of the series, typically formatted by the logic of the authentication statistic*/ 45 private String SeriesLabelFormatted; 44 46 45 47 /* … … 289 291 290 292 public void setStatisticType(String type) { 291 type = type.toUpperCase(); 293 type = type.toUpperCase(); 292 294 for (StatisticType thisType : StatisticType.values()){ 293 295 if (thisType.toString().equals(type)){ … … 308 310 } 309 311 312 public void setSeriesLabelFormatted(String seriesLabelFormatted) { 313 SeriesLabelFormatted = seriesLabelFormatted; 314 } 315 316 public String getSeriesLabelFormatted() { 317 return SeriesLabelFormatted; 318 } 319 320 310 321 311 322
Note: See TracChangeset
for help on using the changeset viewer.
