1 |
|
package com.dreamcatcher.bicycle.vo; |
2 |
|
|
|
|
| 52,9% |
Uncovered Elements: 8 (17) |
Complexity: 8 |
Complexity Density: 0,89 |
|
3 |
|
public class Adsetting { |
4 |
|
private boolean mShowAd = true; |
5 |
|
private int mPointTotal = 0; |
6 |
|
private long mNextShowAdTime = 0; |
7 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
8 |
1
|
public Adsetting(){... |
9 |
|
|
10 |
|
} |
11 |
|
|
|
|
| 0% |
Uncovered Elements: 3 (3) |
Complexity: 1 |
Complexity Density: 0,33 |
|
12 |
0
|
public Adsetting(boolean mShowAd, int mPointTotal, int nextShowAdTime) { ... |
13 |
0
|
this.mShowAd = mShowAd; |
14 |
0
|
this.mPointTotal = mPointTotal; |
15 |
0
|
this.mNextShowAdTime = nextShowAdTime; |
16 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
17 |
0
|
public boolean isShowAd() {... |
18 |
0
|
return mShowAd; |
19 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
20 |
0
|
public void setShowAd(boolean showAd) {... |
21 |
0
|
this.mShowAd = showAd; |
22 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
23 |
2
|
public int getPointTotal() {... |
24 |
2
|
return mPointTotal; |
25 |
|
} |
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
26 |
1
|
public void setPointTotal(int pointTotal) {... |
27 |
1
|
this.mPointTotal = pointTotal; |
28 |
|
} |
29 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
30 |
4
|
public long getNextShowAdTime() {... |
31 |
4
|
return mNextShowAdTime; |
32 |
|
} |
33 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
34 |
1
|
public void setNextShowAdTime(long nextShowAdTime) {... |
35 |
1
|
this.mNextShowAdTime = nextShowAdTime; |
36 |
|
} |
37 |
|
|
38 |
|
|
39 |
|
} |