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

Side by Side Diff: chrome_release_test_status/src/dashboard/PMF.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 javax.jdo.JDOHelper;
4 import javax.jdo.PersistenceManagerFactory;
5
6 public final class PMF {
7 private static final PersistenceManagerFactory pmfInstance =
8 JDOHelper.getPersistenceManagerFactory("transactions-optional");
9
10 private PMF() {}
11
12 public static PersistenceManagerFactory get() {
13 return pmfInstance;
14 }
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698