1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
package net.sourceforge.subsonic.androidapp.domain; |
20 |
|
|
21 |
|
|
22 |
|
@author |
23 |
|
@version |
24 |
|
|
|
|
| 0% |
Uncovered Elements: 16 (16) |
Complexity: 8 |
Complexity Density: 1 |
|
25 |
|
public class JukeboxStatus { |
26 |
|
|
27 |
|
private Integer positionSeconds; |
28 |
|
private Integer currentPlayingIndex; |
29 |
|
private Float gain; |
30 |
|
private boolean playing; |
31 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
32 |
0
|
public Integer getPositionSeconds() {... |
33 |
0
|
return positionSeconds; |
34 |
|
} |
35 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
36 |
0
|
public void setPositionSeconds(Integer positionSeconds) {... |
37 |
0
|
this.positionSeconds = positionSeconds; |
38 |
|
} |
39 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
40 |
0
|
public Integer getCurrentPlayingIndex() {... |
41 |
0
|
return currentPlayingIndex; |
42 |
|
} |
43 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
44 |
0
|
public void setCurrentIndex(Integer currentPlayingIndex) {... |
45 |
0
|
this.currentPlayingIndex = currentPlayingIndex; |
46 |
|
} |
47 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
48 |
0
|
public boolean isPlaying() {... |
49 |
0
|
return playing; |
50 |
|
} |
51 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
52 |
0
|
public void setPlaying(boolean playing) {... |
53 |
0
|
this.playing = playing; |
54 |
|
} |
55 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
56 |
0
|
public Float getGain() {... |
57 |
0
|
return gain; |
58 |
|
} |
59 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
60 |
0
|
public void setGain(float gain) {... |
61 |
0
|
this.gain = gain; |
62 |
|
} |
63 |
|
} |