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

Side by Side Diff: chrome_release_test_status/src/dashboard/BuildInfo.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 BuildInfo {
14 @PrimaryKey
15 @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
16 private Key key;
17
18 @Persistent
19 private String build_number;
20
21 @Persistent
22 private Date date;
23
24 public BuildInfo(String build_number, Date date) {
25 this.build_number = build_number;
26 this.date = date;
27 }
28
29 public Key getKey() {
30 return key;
31 }
32
33 public String getBuildNumber() {
34 return build_number;
35 }
36
37 public Date getDate() {
38 return date;
39 }
40
41 public void setBuildNumber(String build_number) {
42 this.build_number = build_number;
43 }
44
45 public void setDate(Date date) {
46 this.date = date;
47 }
48 }
OLDNEW
« no previous file with comments | « chrome_release_test_status/src/META-INF/jdoconfig.xml ('k') | chrome_release_test_status/src/dashboard/LinuxTestStatus.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698