Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2566)

Unified Diff: chrome_release_test_status/src/dashboard/RegisterFeature.java

Issue 2831022: The following java and jsp files will collect the Chrome release testing stat... Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome_release_test_status/src/dashboard/RegisterFeature.java
===================================================================
--- chrome_release_test_status/src/dashboard/RegisterFeature.java (revision 0)
+++ chrome_release_test_status/src/dashboard/RegisterFeature.java (revision 0)
@@ -0,0 +1,95 @@
+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 RegisterFeature {
+ @PrimaryKey
+ @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
+ private Key key;
+
+ @Persistent
+ private String feature_name;
+
+ @Persistent
+ private String feature_type;
+
+ @Persistent
+ private String related_docs;
+
+ @Persistent
+ private String notes;
+
+ @Persistent
+ private String mile_stone;
+
+ @Persistent
+ private Date date;
+
+ public RegisterFeature(String feature_name, String related_docs, String feature_type, String mile_stone, String notes, Date date) {
+ this.feature_name = feature_name;
+ this.related_docs = related_docs;
+ this.feature_type = feature_type;
+ this.mile_stone = mile_stone;
+ this.notes = notes;
+ this.date = date;
+ }
+
+ public Key getKey() {
+ return key;
+ }
+
+ public String getFeatureName() {
+ return feature_name;
+ }
+
+ public String getFeatureType() {
+ return feature_type;
+ }
+
+ public String getRelatedDocs() {
+ return related_docs;
+ }
+
+ public String getNotes() {
+ return notes;
+ }
+
+ public String getMileStone() {
+ return mile_stone;
+ }
+
+ public Date getDate() {
+ return date;
+ }
+ public void setFeatureName(String feature_name) {
+ this.feature_name = feature_name;
+ }
+
+ public void setFeatureType(String feature_type) {
+ this.feature_type = feature_type;
+ }
+
+ public void setRelatedDocs(String related_docs) {
+ this.related_docs = related_docs;
+ }
+
+ public void setNotes(String notes) {
+ this.notes = notes;
+ }
+
+ public void setMileStone(String mile_stone) {
+ this.mile_stone = mile_stone;
+ }
+
+ public void setDate(Date date) {
+ this.date = date;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698