Ejemplo n.º 1
0
 @DataBoundConstructor
 public TestTrendChart(
     String name, int graphWidth, int graphHeight, String display, int dateRange, int dateShift) {
   super(name);
   this.graphWidth = graphWidth;
   this.graphHeight = graphHeight;
   this.dateRange = dateRange;
   this.dateShift = dateShift;
   this.displayStatus = display != null ? DisplayStatus.valueOf(display) : DisplayStatus.ALL;
   DashboardLog.debug("TestTrendChart", "ctor");
 }
Ejemplo n.º 2
0
 public void setDisplayStatus(String s) {
   displayStatus = DisplayStatus.valueOf(s);
 }