Changeset 431


Ignore:
Timestamp:
01/12/11 19:53:49 (2 years ago)
Author:
philsmart
Message:
 
File:
1 edited

Legend:

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

    r424 r431  
    4242    /* The textual description of the series, as attached to the x-axis */ 
    4343    private String seriesLabel; 
     44    /* A formatted textual description of the series, typically formatted by the logic of the authentication statistic*/ 
     45    private String SeriesLabelFormatted; 
    4446 
    4547    /* 
     
    289291 
    290292    public void setStatisticType(String type) { 
    291         type = type.toUpperCase();  
     293        type = type.toUpperCase(); 
    292294        for (StatisticType thisType : StatisticType.values()){ 
    293295            if (thisType.toString().equals(type)){ 
     
    308310    } 
    309311 
     312    public void setSeriesLabelFormatted(String seriesLabelFormatted) { 
     313        SeriesLabelFormatted = seriesLabelFormatted; 
     314    } 
     315 
     316    public String getSeriesLabelFormatted() { 
     317        return SeriesLabelFormatted; 
     318    } 
     319 
     320 
    310321 
    311322 
Note: See TracChangeset for help on using the changeset viewer.