1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package biz.target;
|
| import foundation.preload.Bucket;
|
| public class TargetModelBucket extends Bucket<TargetModel>{
|
| private static TargetModelBucket instance;
|
| public static TargetModelBucket getInstance() {
| if (instance == null) {
| instance = new TargetModelBucket();
| }
|
| return instance;
| }
|
| }
|
|