blob: b179ab484b0384a86497b89507f26ffe35fda8e2 [file] [log] [blame]
/*
* Copyright 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.benchmarks.viewer.client;
import com.google.gwt.user.client.rpc.IsSerializable;
import java.util.Date;
import java.util.List;
/**
* A data object for Report.
*/
public class Report implements IsSerializable {
private List<Category> categories;
private Date date;
// Temporary addition until we get better date
private String dateString;
// formatting in GWT
private String gwtVersion;
private String id;
public List<Category> getCategories() {
return categories;
}
public Date getDate() {
return date;
}
public String getDateString() {
return dateString;
}
public String getGwtVersion() {
return gwtVersion;
}
public String getId() {
return id;
}
public ReportSummary getSummary() {
int numTests = 0;
boolean testsPassed = true;
for (int i = 0; i < categories.size(); ++i) {
Category c = categories.get(i);
List<Benchmark> benchmarks = c.getBenchmarks();
numTests += benchmarks.size();
}
return new ReportSummary(id, date, dateString, numTests, testsPassed);
}
public void setCategories(List<Category> categories) {
this.categories = categories;
}
public void setDate(Date date) {
this.date = date;
}
public void setDateString(String dateString) {
this.dateString = dateString;
}
public void setGwtVersion(String gwtVersion) {
this.gwtVersion = gwtVersion;
}
public void setId(String id) {
this.id = id;
}
}