| Index: chrome_release_test_status/src/dashboard/TestStatus.java
|
| ===================================================================
|
| --- chrome_release_test_status/src/dashboard/TestStatus.java (revision 0)
|
| +++ chrome_release_test_status/src/dashboard/TestStatus.java (revision 0)
|
| @@ -0,0 +1,180 @@
|
| +package mydemo;
|
| +
|
| +import com.google.appengine.api.datastore.Key;
|
| +import com.google.appengine.api.users.User;
|
| +
|
| +import java.util.Date;
|
| +import javax.jdo.annotations.IdGeneratorStrategy;
|
| +import javax.jdo.annotations.PersistenceCapable;
|
| +import javax.jdo.annotations.Persistent;
|
| +import javax.jdo.annotations.PrimaryKey;
|
| +
|
| +@PersistenceCapable
|
| +public class TestStatus {
|
| + @PrimaryKey
|
| + @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
|
| + private Key key;
|
| +
|
| + @Persistent
|
| + private String feature_name;
|
| +
|
| + @Persistent
|
| + private String test_status_xp;
|
| +
|
| + @Persistent
|
| + private String test_status_vista;
|
| +
|
| + @Persistent
|
| + private String test_status_win7;
|
| +
|
| + @Persistent
|
| + private String build_number;
|
| +
|
| + @Persistent
|
| + private String test_type_xp;
|
| +
|
| + @Persistent
|
| + private String test_type_vista;
|
| +
|
| + @Persistent
|
| + private String test_type_win7;
|
| +
|
| + @Persistent
|
| + private String notes;
|
| +
|
| + @Persistent
|
| + private String xp_tester;
|
| +
|
| + @Persistent
|
| + private String vista_tester;
|
| +
|
| + @Persistent
|
| + private String win7_tester;
|
| +
|
| + @Persistent
|
| + private Date date;
|
| +
|
| + public TestStatus(String feature_name, String test_status_xp, String test_status_vista, String test_status_win7, String build_number,
|
| + String test_type_xp, String test_type_vista, String test_type_win7, String notes, String xp_tester, String vista_tester,
|
| + String win7_tester, Date date) {
|
| + this.feature_name = feature_name;
|
| + this.test_status_xp = test_status_xp;
|
| + this.test_status_vista = test_status_vista;
|
| + this.test_status_win7 = test_status_win7;
|
| + this.build_number = build_number;
|
| + this.test_type_xp = test_type_xp;
|
| + this.test_type_vista = test_type_vista;
|
| + this.test_type_win7 = test_type_win7;
|
| + this.notes = notes;
|
| + this.xp_tester = xp_tester;
|
| + this.vista_tester = vista_tester;
|
| + this.win7_tester = win7_tester;
|
| + this.date = date;
|
| + }
|
| +
|
| + public Key getKey() {
|
| + return key;
|
| + }
|
| +
|
| + public String getFeatureName() {
|
| + return feature_name;
|
| + }
|
| +
|
| + public String getStatusXP() {
|
| + return test_status_xp;
|
| + }
|
| +
|
| + public String getStatusVista() {
|
| + return test_status_vista;
|
| + }
|
| +
|
| + public String getStatusWin7() {
|
| + return test_status_win7;
|
| + }
|
| +
|
| + public String getBuildNumber() {
|
| + return build_number;
|
| + }
|
| +
|
| + public String getTestTypeXP() {
|
| + return test_type_xp;
|
| + }
|
| +
|
| + public String getTestTypeVista() {
|
| + return test_type_vista;
|
| + }
|
| +
|
| + public String getTestTypeWin7() {
|
| + return test_type_win7;
|
| + }
|
| +
|
| + public String getNotes() {
|
| + return notes;
|
| + }
|
| +
|
| + public String getXpTester() {
|
| + return xp_tester;
|
| + }
|
| +
|
| + public String getVistaTester() {
|
| + return vista_tester;
|
| + }
|
| +
|
| + public String getWin7Tester() {
|
| + return win7_tester;
|
| + }
|
| +
|
| + public Date getDate() {
|
| + return date;
|
| + }
|
| +
|
| + public void setFeatureName(String feature_name) {
|
| + this.feature_name = feature_name;
|
| + }
|
| +
|
| + public void setStatusXP(String test_status_xp) {
|
| + this.test_status_xp = test_status_xp;
|
| + }
|
| +
|
| + public void setStatusVista(String test_status_vista) {
|
| + this.test_status_vista = test_status_vista;
|
| + }
|
| +
|
| + public void setStatusWin7(String test_status_win7) {
|
| + this.test_status_win7 = test_status_win7;
|
| + }
|
| + public void setBuildNumber(String build_number) {
|
| + this.build_number = build_number;
|
| + }
|
| +
|
| + public void setTestTypeXP(String test_type_xp) {
|
| + this.test_type_xp = test_type_xp;
|
| + }
|
| +
|
| + public void setTestTypeVista(String test_type_vista) {
|
| + this.test_type_vista = test_type_vista;
|
| + }
|
| +
|
| + public void setTestTypeWin7(String test_type_win7) {
|
| + this.test_type_win7 = test_type_win7;
|
| + }
|
| +
|
| + public void setNotes(String notes) {
|
| + this.notes = notes;
|
| + }
|
| +
|
| + public void setXpTester(String xp_tester) {
|
| + this.xp_tester = xp_tester;
|
| + }
|
| +
|
| + public void setVistaTester(String vista_tester) {
|
| + this.vista_tester = vista_tester;
|
| + }
|
| +
|
| + public void setWin7Tester(String win7_tester) {
|
| + this.win7_tester = win7_tester;
|
| + }
|
| + public void setDate(Date date) {
|
| + this.date = date;
|
| + }
|
| +}
|
|
|