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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 package mydemo;
2
3 import com.google.appengine.api.datastore.Key;
4 import com.google.appengine.api.users.User;
5
6 import java.util.Date;
7 import javax.jdo.annotations.IdGeneratorStrategy;
8 import javax.jdo.annotations.PersistenceCapable;
9 import javax.jdo.annotations.Persistent;
10 import javax.jdo.annotations.PrimaryKey;
11
12 @PersistenceCapable
13 public class RegisterFeature {
14 @PrimaryKey
15 @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
16 private Key key;
17
18 @Persistent
19 private String feature_name;
20
21 @Persistent
22 private String feature_type;
23
24 @Persistent
25 private String related_docs;
26
27 @Persistent
28 private String notes;
29
30 @Persistent
31 private String mile_stone;
32
33 @Persistent
34 private Date date;
35
36 public RegisterFeature(String feature_name, String related_docs, String feat ure_type, String mile_stone, String notes, Date date) {
37 this.feature_name = feature_name;
38 this.related_docs = related_docs;
39 this.feature_type = feature_type;
40 this.mile_stone = mile_stone;
41 this.notes = notes;
42 this.date = date;
43 }
44
45 public Key getKey() {
46 return key;
47 }
48
49 public String getFeatureName() {
50 return feature_name;
51 }
52
53 public String getFeatureType() {
54 return feature_type;
55 }
56
57 public String getRelatedDocs() {
58 return related_docs;
59 }
60
61 public String getNotes() {
62 return notes;
63 }
64
65 public String getMileStone() {
66 return mile_stone;
67 }
68
69 public Date getDate() {
70 return date;
71 }
72 public void setFeatureName(String feature_name) {
73 this.feature_name = feature_name;
74 }
75
76 public void setFeatureType(String feature_type) {
77 this.feature_type = feature_type;
78 }
79
80 public void setRelatedDocs(String related_docs) {
81 this.related_docs = related_docs;
82 }
83
84 public void setNotes(String notes) {
85 this.notes = notes;
86 }
87
88 public void setMileStone(String mile_stone) {
89 this.mile_stone = mile_stone;
90 }
91
92 public void setDate(Date date) {
93 this.date = date;
94 }
95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698